react-latex-editor
Version:
A powerful React rich text editor with mathematical equation support, built on TipTap with MathLive integration
17 lines • 527 B
TypeScript
import { default as React } from 'react';
import { ReactNodeViewProps } from '@tiptap/react';
import { Node } from '@tiptap/pm/model';
interface YoutubeNodeAttrs {
src: string;
width: string;
height: string;
align: string;
}
interface ResizableYoutubeViewProps extends ReactNodeViewProps {
node: Node & {
attrs: YoutubeNodeAttrs;
};
}
declare const ResizableYoutubeView: React.FC<ResizableYoutubeViewProps>;
export default ResizableYoutubeView;
//# sourceMappingURL=ResizableYoutubeView.d.ts.map