14 lines
343 B
TypeScript
14 lines
343 B
TypeScript
import * as lit from 'lit';
|
|
|
|
// export { KeVisualBase } from './html-preview/kevisual-base';
|
|
|
|
export { lit };
|
|
|
|
export const html = lit.html;
|
|
export const svg = lit.svg;
|
|
export const mathml = lit.mathml;
|
|
export const render = lit.render;
|
|
export const nothing = lit.nothing;
|
|
export const css = lit.css;
|
|
export const LitElement = lit.LitElement;
|