html/src/lit.ts
2025-03-20 02:30:03 +08:00

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;