react-latex-editor
Version:
A professional React rich text editor with mathematical equation support, built on TipTap with MathLive integration. Production-ready with TypeScript support, accessibility features, and industrial-grade error handling.
25 lines • 739 B
TypeScript
export interface MathfieldElement extends HTMLElement {
value: string;
menuItems: any[];
virtualKeyboardMode?: string;
mathMode?: string;
smartMode?: boolean;
smartFence?: boolean;
smartSuperscript?: boolean;
smartSubscript?: boolean;
smartOperator?: boolean;
smartFraction?: boolean;
smartSqrt?: boolean;
smartBracket?: boolean;
smartParen?: boolean;
smartQuote?: boolean;
smartSpace?: boolean;
smartCommand?: boolean;
menuToggle?: string;
menuToggleVisible?: boolean;
fontsDirectory?: string | null;
[key: string]: any;
}
export declare const ensureMathLiveLoaded: () => Promise<void>;
export default MathfieldElement;
//# sourceMappingURL=mathlive.d.ts.map