20 lines
427 B
TypeScript
20 lines
427 B
TypeScript
// pushrocks scope
|
|
import * as isounique from '@push.rocks/isounique';
|
|
import * as smartrx from '@push.rocks/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 '@design.estate/dees-domtools';
|
|
|
|
export { lit, domtools };
|