mui-tiptap
Version:
A Material-UI (MUI) styled WYSIWYG rich text editor, using Tiptap
11 lines (10 loc) • 442 B
TypeScript
export interface RichTextContentClasses {
/** Styles applied to the root element. */
root: string;
/** Styles applied when the editor is in read-only mode (editable=false). */
readonly: string;
/** Styles applied when the editor is editable (editable=true). */
editable: string;
}
export type RichTextContentClassKey = keyof RichTextContentClasses;
export declare const richTextContentClasses: RichTextContentClasses;