dees-domtools/ts/index.ts

21 lines
739 B
TypeScript
Raw Normal View History

2022-03-16 12:39:50 +00:00
export * from './domtools.colors.js';
2020-05-23 14:44:42 +00:00
2022-03-16 12:39:50 +00:00
import * as elementBasic from './domtools.elementbasic.js';
import * as breakpoints from './domtools.css.breakpoints.js';
import * as css from './domtools.css.js';
2020-05-23 15:00:01 +00:00
2020-05-27 21:15:38 +00:00
export { css, breakpoints, elementBasic };
2022-04-21 21:10:14 +00:00
export { DomTools, IDomToolsContructorOptions } from './domtools.classes.domtools.js';
2020-06-26 01:39:10 +00:00
export { TypedRequest } from '@apiglobal/typedrequest';
2023-08-20 15:10:10 +00:00
export { IWebSetupConstructorOptions } from '@push.rocks/websetup';
export { rxjs } from '@push.rocks/smartrx';
2020-06-30 14:08:35 +00:00
2022-03-16 12:39:50 +00:00
import * as allPlugins from './domtools.plugins.js';
2020-06-30 14:08:35 +00:00
export const plugins = {
2021-08-26 18:24:28 +00:00
smartdelay: allPlugins.smartdelay,
2020-07-15 18:12:27 +00:00
smartpromise: allPlugins.smartpromise,
2021-09-16 14:49:24 +00:00
SweetScroll: allPlugins.SweetScroll,
2023-05-07 18:56:08 +00:00
smartstate: allPlugins.smartstate,
2020-07-15 18:12:27 +00:00
};