edit-on-slate
Version:
Slate 기반의 직관적이고 강력한 리액트 텍스트 에디터 라이브러리
10 lines • 353 B
TypeScript
import { DOMEditor, type DOMEditorInterface } from 'slate-dom';
/**
* A React and DOM-specific version of the `Editor` interface.
*/
export interface ReactEditor extends DOMEditor {
}
export interface ReactEditorInterface extends DOMEditorInterface {
}
export declare const ReactEditor: ReactEditorInterface;
//# sourceMappingURL=react-editor.d.ts.map