smartpdf/ts/smartpdf.plugins.ts

38 lines
877 B
TypeScript
Raw 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 15:35:26 +00:00
export { http, path };
2018-10-06 13:25:45 +00:00
// @pushrocks
2023-07-26 12:17:11 +00: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 21:04:59 +00:00
export {
smartfile,
smartdelay,
smartpromise,
smartpath,
smartpuppeteer,
smartunique,
smartnetwork,
};
2018-10-06 13:25:45 +00:00
2022-06-15 20:14:55 +00:00
// tsclass scope
import * as tsclass from '@tsclass/tsclass';
2022-10-26 21:04:59 +00:00
export { tsclass };
2022-06-15 20:14:55 +00:00
2018-10-06 13:25:45 +00:00
// thirdparty
2021-10-14 08:59:45 +00:00
import pdfMerger from 'pdf-merger-js';
2022-01-05 16:20:28 +00:00
// @ts-ignore
import pdf2json from 'pdf2json';
2019-05-28 22:27:43 +00:00
import express from 'express';
2018-10-06 13:25:45 +00:00
2022-01-05 16:20:28 +00:00
export { pdfMerger, pdf2json, express };