dees-element/ts/dees-element.plugins.ts

24 lines
407 B
TypeScript
Raw Normal View History

2020-12-07 03:30:59 +00:00
// pushrocks scope
2021-03-27 16:52:06 +00:00
import * as isounique from '@pushrocks/isounique';
2020-12-07 03:30:59 +00:00
import * as smartrx from '@pushrocks/smartrx';
export {
2021-03-27 16:52:06 +00:00
isounique,
2020-12-07 03:30:59 +00:00
smartrx
};
// third party scope
2021-03-27 16:52:06 +00:00
import { css, unsafeCSS, LitElement, property } from 'lit-element';
2020-11-25 13:43:39 +00:00
const litElement = {
2021-03-27 16:52:06 +00:00
css,
unsafeCSS,
2020-11-25 14:56:18 +00:00
LitElement,
property
2020-11-25 13:43:39 +00:00
};
import * as domtools from '@designestate/dees-domtools';
export {
litElement,
domtools
};