smartsocket/ts/smartsocket.plugins.ts

38 lines
885 B
TypeScript
Raw Normal View History

2019-09-09 21:58:32 +00:00
// apiglobal scope
import * as typedrequestInterfaces from '@apiglobal/typedrequest-interfaces';
export {typedrequestInterfaces};
// pushrocks scope
import * as lik from '@pushrocks/lik';
import * as smartlog from '@pushrocks/smartlog';
import * as smarthash from '@pushrocks/smarthash';
import * as smartdelay from '@pushrocks/smartdelay';
2019-04-24 15:10:51 +00:00
import * as smartexpress from '@pushrocks/smartexpress';
import * as smartpromise from '@pushrocks/smartpromise';
2019-11-06 23:26:47 +00:00
import * as smarttime from '@pushrocks/smarttime';
2019-11-03 18:17:26 +00:00
import * as smartunique from '@pushrocks/smartunique';
2019-11-06 23:26:47 +00:00
import * as smartrx from '@pushrocks/smartrx';
2019-09-09 21:58:32 +00:00
2019-04-26 15:35:15 +00:00
export {
lik,
smartlog,
smarthash,
smartdelay,
smartexpress,
2019-11-03 18:17:26 +00:00
smartpromise,
2019-11-06 23:26:47 +00:00
smarttime,
2019-11-03 18:17:26 +00:00
smartunique,
2019-11-06 23:26:47 +00:00
smartrx
2019-09-09 21:58:32 +00:00
};
// third party scope
import socketIo from 'socket.io';
import socketIoClient from 'socket.io-client';
export {
2019-04-26 15:35:15 +00:00
socketIo,
socketIoClient
};