UNPKG

@wangeditor-next/yjs-for-react

Version:

React specific components/utils for wangeditor-next-yjs.

17 lines (16 loc) 472 B
import { CustomTypes, ExtendedType } from 'slate'; type ElementType = ExtendedType<'Element', CustomTypes>['type']; export interface WithTableOptions { blocks: { td: ElementType; th: ElementType; content: ElementType; tr: ElementType; table: ElementType; tbody: ElementType; tfoot?: ElementType; thead?: ElementType; }; } export declare const DEFAULT_WITH_TABLE_OPTIONS: WithTableOptions; export {};