reactjs-tiptap-editor
Version:
A modern WYSIWYG rich text editor based on tiptap and shadcn ui for React
8 lines (7 loc) • 394 B
TypeScript
import { LineHeightOptions as TiptapLineHeightOptions } from '@tiptap/extension-text-style';
import { GeneralOptions } from '../../types';
export * from './components/RichTextLightHeight';
export interface LineHeightOptions extends GeneralOptions<TiptapLineHeightOptions> {
lineHeights: string[];
}
export declare const LineHeight: import('@tiptap/core').Extension<LineHeightOptions, any>;