usfm-editor
Version:
A WYSIWYG editor component for USFM
13 lines (12 loc) • 622 B
TypeScript
import { Editor, Path } from "slate";
export declare const VerseTransforms: {
joinWithPreviousVerse: typeof joinWithPreviousVerse;
unjoinVerses: typeof unjoinVerses;
removeVerseAndConcatenateContentsWithPrevious: typeof removeVerseAndConcatenateContentsWithPrevious;
addVerse: typeof addVerse;
};
declare function joinWithPreviousVerse(editor: Editor, path: Path): void;
declare function removeVerseAndConcatenateContentsWithPrevious(editor: Editor, path: Path): void;
declare function unjoinVerses(editor: Editor, path: Path): void;
declare function addVerse(editor: Editor, path: Path): void;
export {};