20 lines
424 B
TypeScript
20 lines
424 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 };
|