usfm-editor
Version:
A WYSIWYG editor component for USFM
10 lines (9 loc) • 349 B
TypeScript
import { UsfmEditorRef } from "./UsfmEditor";
export declare class NoopUsfmEditor implements UsfmEditorRef {
getMarksAtSelection: () => string[];
addMarkAtSelection: () => void;
removeMarkAtSelection: () => void;
getParagraphTypesAtSelection: () => string[];
setParagraphTypeAtSelection: () => void;
goToVerse: () => void;
}