ranui
Version:
A framework-agnostic Web Components UI library built on native custom elements, with TypeScript types, light/dark theming, SSR and PWA support.
17 lines (16 loc) • 514 B
TypeScript
import { RanElement } from '@/utils/index';
export declare class Math extends RanElement {
contain: HTMLElement;
_shadowDom: ShadowRoot;
static get observedAttributes(): string[];
constructor();
get latex(): string;
set latex(value: string);
get sheet(): string;
set sheet(value: string);
handlerExternalCss: () => void;
render(): void;
connectedCallback(): void;
attributeChangedCallback(k: string, o: string | null, n: string | null): void;
}
export default Math;