21 lines
750 B
TypeScript
21 lines
750 B
TypeScript
export * from './domtools.colors.js';
|
|
|
|
import * as elementBasic from './domtools.elementbasic.js';
|
|
import * as breakpoints from './domtools.css.breakpoints.js';
|
|
import * as css from './domtools.css.js';
|
|
|
|
export { css, breakpoints, elementBasic };
|
|
export { DomTools, type IDomToolsContructorOptions } from './domtools.classes.domtools.js';
|
|
export { TypedRequest } from '@api.global/typedrequest';
|
|
export { type IWebSetupConstructorOptions } from '@push.rocks/websetup';
|
|
export { rxjs } from '@push.rocks/smartrx';
|
|
|
|
import * as allPlugins from './domtools.plugins.js';
|
|
|
|
export const plugins = {
|
|
smartdelay: allPlugins.smartdelay,
|
|
smartpromise: allPlugins.smartpromise,
|
|
SweetScroll: allPlugins.SweetScroll,
|
|
smartstate: allPlugins.smartstate,
|
|
};
|