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

25 lines
430 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-11-27 16:07:33 +00:00
import { css, unsafeCSS, LitElement } from 'lit';
2021-12-14 00:59:50 +00:00
import { property } from 'lit/decorators/property.js';
2021-11-27 16:07:33 +00:00
const lit = {
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 {
2021-11-27 16:07:33 +00:00
lit,
2020-11-25 13:43:39 +00:00
domtools
};