smartpdf/ts/smartpdf.plugins.ts

39 lines
923 B
TypeScript
Raw Permalink Normal View History

2018-10-06 13:25:45 +00:00
// native
import * as http from 'http';
import * as path from 'path';
2018-10-06 17:35:26 +02:00
export { http, path };
2018-10-06 13:25:45 +00:00
// @pushrocks
2024-04-25 18:48:08 +02:00
import * as smartbuffer from '@push.rocks/smartbuffer';
2023-07-26 14:17:11 +02:00
import * as smartfile from '@push.rocks/smartfile';
import * as smartdelay from '@push.rocks/smartdelay';
import * as smartpromise from '@push.rocks/smartpromise';
import * as smartpath from '@push.rocks/smartpath';
import * as smartpuppeteer from '@push.rocks/smartpuppeteer';
import * as smartnetwork from '@push.rocks/smartnetwork';
import * as smartunique from '@push.rocks/smartunique';
2018-10-06 13:25:45 +00:00
2022-10-26 23:04:59 +02:00
export {
2024-04-25 18:48:08 +02:00
smartbuffer,
2022-10-26 23:04:59 +02:00
smartfile,
smartdelay,
smartpromise,
smartpath,
smartpuppeteer,
smartunique,
smartnetwork,
};
2018-10-06 13:25:45 +00:00
2022-06-15 22:14:55 +02:00
// tsclass scope
import * as tsclass from '@tsclass/tsclass';
2022-10-26 23:04:59 +02:00
export { tsclass };
2022-06-15 22:14:55 +02:00
2018-10-06 13:25:45 +00:00
// thirdparty
2019-05-29 00:27:43 +02:00
import express from 'express';
2024-04-25 18:48:08 +02:00
import pdf2json from 'pdf2json';
import pdfLib from 'pdf-lib';
2018-10-06 13:25:45 +00:00
export { express, pdf2json, pdfLib, };