34 lines
895 B
TypeScript
34 lines
895 B
TypeScript
// designestate scope
|
|
import * as deesComms from '@designestate/dees-comms';
|
|
|
|
export {
|
|
deesComms
|
|
};
|
|
|
|
// apiglobal scope
|
|
import * as typedrequest from '@apiglobal/typedrequest';
|
|
|
|
export { typedrequest };
|
|
|
|
// pushrocks scope
|
|
import * as smartdelay from '@pushrocks/smartdelay';
|
|
import * as smartpromise from '@pushrocks/smartpromise';
|
|
import * as smartrouter from '@pushrocks/smartrouter';
|
|
import * as smartstate from '@pushrocks/smartstate';
|
|
import * as webrequest from '@pushrocks/webrequest';
|
|
import * as websetup from '@pushrocks/websetup';
|
|
import * as webstore from '@pushrocks/webstore';
|
|
|
|
// subscope lik
|
|
import { ObjectMap } from '@pushrocks/lik/dist_ts/lik.objectmap';
|
|
const lik = {
|
|
ObjectMap
|
|
};
|
|
|
|
export { lik, smartdelay, smartpromise, smartrouter, smartstate, webrequest, websetup, webstore };
|
|
|
|
// third party scope
|
|
import SweetScroll from 'sweet-scroll';
|
|
|
|
export { SweetScroll };
|