24 lines
407 B
TypeScript
24 lines
407 B
TypeScript
// pushrocks scope
|
|
import * as isounique from '@pushrocks/isounique';
|
|
import * as smartrx from '@pushrocks/smartrx';
|
|
|
|
export {
|
|
isounique,
|
|
smartrx
|
|
};
|
|
|
|
// third party scope
|
|
import { css, unsafeCSS, LitElement, property } from 'lit-element';
|
|
const litElement = {
|
|
css,
|
|
unsafeCSS,
|
|
LitElement,
|
|
property
|
|
};
|
|
|
|
import * as domtools from '@designestate/dees-domtools';
|
|
|
|
export {
|
|
litElement,
|
|
domtools
|
|
}; |