25 lines
431 B
TypeScript
25 lines
431 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 } from 'lit';
|
|
import { property } from 'lit/decorators/property.js';
|
|
const lit = {
|
|
css,
|
|
unsafeCSS,
|
|
LitElement,
|
|
property,
|
|
};
|
|
|
|
import * as domtools from '@designestate/dees-domtools';
|
|
|
|
export {
|
|
lit,
|
|
domtools
|
|
}; |