dees-domtools/ts/index.ts

32 lines
984 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 };
2023-08-27 11:33:36 +00:00
export { DomTools, type IDomToolsContructorOptions } from './domtools.classes.domtools.js';
2023-09-09 21:36:31 +00:00
export { TypedRequest } from '@api.global/typedrequest';
2023-08-27 11:33:36 +00:00
export { type IWebSetupConstructorOptions } from '@push.rocks/websetup';
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,
2024-01-20 00:08:25 +00:00
smartmarkdown: allPlugins.smartmarkdown,
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,
2023-09-17 12:30:55 +00:00
smartrx: allPlugins.smartrx,
2024-01-20 00:25:19 +00:00
smartstring: allPlugins.smartstring,
2023-09-17 12:30:55 +00:00
smarturl: allPlugins.smarturl,
2023-10-03 09:46:14 +00:00
typedrequest: allPlugins.typedrequest,
2020-07-15 18:12:27 +00:00
};
2023-10-23 15:22:14 +00:00
// type exports
import type { rxjs } from '@push.rocks/smartrx';
export type {
rxjs,
}