dees-domtools/ts/domtools.plugins.ts

43 lines
970 B
TypeScript
Raw Normal View History

2020-10-06 22:08:26 +00:00
// designestate scope
import * as deesComms from '@designestate/dees-comms';
2021-03-10 17:01:32 +00:00
export { deesComms };
2020-10-06 22:08:26 +00:00
// apiglobal scope
2020-06-28 18:03:22 +00:00
import * as typedrequest from '@apiglobal/typedrequest';
2020-06-28 21:26:57 +00:00
export { typedrequest };
2020-06-28 18:03:22 +00:00
2020-05-25 15:57:47 +00:00
// pushrocks scope
2020-07-29 17:32:28 +00:00
import * as smartdelay from '@pushrocks/smartdelay';
2020-05-25 15:57:47 +00:00
import * as smartpromise from '@pushrocks/smartpromise';
2020-06-03 10:34:09 +00:00
import * as smartrouter from '@pushrocks/smartrouter';
2020-12-07 03:13:34 +00:00
import * as smartrx from '@pushrocks/smartrx';
2020-05-25 15:57:47 +00:00
import * as smartstate from '@pushrocks/smartstate';
2020-06-28 15:49:46 +00:00
import * as webrequest from '@pushrocks/webrequest';
import * as websetup from '@pushrocks/websetup';
2020-09-16 15:10:52 +00:00
import * as webstore from '@pushrocks/webstore';
2020-05-25 15:57:47 +00:00
2020-11-23 20:41:26 +00:00
// subscope lik
2022-03-16 12:39:50 +00:00
import { ObjectMap } from '@pushrocks/lik/dist_ts/lik.objectmap.js';
2020-11-23 20:41:26 +00:00
const lik = {
2021-03-10 17:01:32 +00:00
ObjectMap,
2020-11-23 20:41:26 +00:00
};
2021-03-10 17:01:32 +00:00
export {
lik,
smartdelay,
smartpromise,
smartrouter,
smartrx,
smartstate,
webrequest,
websetup,
webstore,
};
2020-06-28 15:49:46 +00:00
// third party scope
2020-06-28 16:59:14 +00:00
import SweetScroll from 'sweet-scroll';
2020-06-28 15:49:46 +00:00
2020-06-28 16:59:14 +00:00
export { SweetScroll };