initial implementation

This commit is contained in:
Phil Kunz
2018-10-06 13:25:45 +00:00
parent 2d70a4e229
commit f2766ab639
13 changed files with 1916 additions and 0 deletions

30
ts/smartpdf.plugins.ts Normal file
View File

@@ -0,0 +1,30 @@
// native
import * as http from 'http';
import * as path from 'path';
export {
http,
path
}
// @pushrocks
import * as smartfile from '@pushrocks/smartfile';
import * as smartpromise from '@pushrocks/smartpromise';
import * as smartnetwork from '@pushrocks/smartnetwork';
import * as smartunique from 'smartunique';
export {
smartfile,
smartpromise,
smartunique,
smartnetwork
}
// thirdparty
import * as express from 'express';
import * as puppeteer from 'puppeteer';
export {
express,
puppeteer
}