lik/ts/lik.plugins.ts

31 lines
596 B
TypeScript
Raw Normal View History

2018-11-23 19:33:44 +00:00
// ==============
// native
// ==============
2018-07-15 14:04:27 +00:00
import * as events from 'events';
2018-11-23 19:33:44 +00:00
export { events };
// ==============
// @pushrocks
// ==============
import * as smartdelay from '@pushrocks/smartdelay';
2018-07-15 14:04:27 +00:00
import * as smartpromise from '@pushrocks/smartpromise';
2018-11-23 19:33:44 +00:00
import * as smartrx from '@pushrocks/smartrx';
import * as smarttime from '@pushrocks/smarttime';
export {
smartdelay,
smartpromise,
smartrx,
smarttime
};
// ==============
// third party
// ==============
import * as minimatch from 'minimatch';
2018-07-15 14:04:27 +00:00
const symbolTree = require('symbol-tree');
2017-06-30 16:01:35 +00:00
2018-11-23 19:33:44 +00:00
export { minimatch, symbolTree };