smartpdf/ts/smartpdf.plugins.ts

40 lines
963 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 15:35:26 +00:00
export { http, path };
2018-10-06 13:25:45 +00:00
// @pushrocks
2024-04-25 16:48:08 +00:00
import * as smartbuffer from '@push.rocks/smartbuffer';
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 {
2024-04-25 16:48:08 +00:00
smartbuffer,
2022-10-26 21:04:59 +00:00
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
2019-05-28 22:27:43 +00:00
import express from 'express';
2024-04-25 16:48:08 +00:00
import pdf2json from 'pdf2json';
import pdf2pic from 'pdf2pic';
import pdfLib from 'pdf-lib';
2018-10-06 13:25:45 +00:00
2024-04-25 16:48:08 +00:00
export { express, pdf2json, pdf2pic, pdfLib, };