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.
18 lines • 538 B
TypeScript
import { default as React } from 'react';
import { Node } from '@tiptap/pm/model';
interface YoutubeNodeAttrs {
src: string;
width: string;
height: string;
align: string;
}
interface ResizableYoutubeViewProps {
node: Node & {
attrs: YoutubeNodeAttrs;
};
updateAttributes: (attrs: Partial<YoutubeNodeAttrs>) => void;
selected?: boolean;
}
declare const ResizableYoutubeView: React.FC<ResizableYoutubeViewProps>;
export default ResizableYoutubeView;
//# sourceMappingURL=ResizableYoutubeView.d.ts.map