28 lines
776 B
TypeScript
28 lines
776 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';
|
|
|
|
export { smartdelay, smartpromise, smartrouter, smartstate, webrequest, websetup, webstore };
|
|
|
|
// third party scope
|
|
import SweetScroll from 'sweet-scroll';
|
|
|
|
export { SweetScroll };
|