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