UNPKG

@wangeditor-next/yjs-for-react

Version:

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

10 lines (9 loc) 548 B
/** * @description outline numbering marker actions */ import { IDomEditor } from '@wangeditor-next/core'; import { ListItemElement } from './custom-types'; export declare function continueOutlineNumbering(editor: IDomEditor, node: ListItemElement): void; export declare function restartOutlineNumbering(editor: IDomEditor, node: ListItemElement): void; export declare function hideOutlineActionPanel(editor: IDomEditor): void; export declare function showOutlineActionPanel(editor: IDomEditor, node: ListItemElement, marker: HTMLElement): void;