@lobehub/editor
Version:
A powerful and extensible rich text editor built on Meta's Lexical framework, providing a modern editing experience with React integration.
12 lines (11 loc) • 302 B
TypeScript
import type { IEditor } from "../types";
export { default as DataSource } from './data-source';
export * from './utils';
/**
* Editor object to create an instance of the editor
*/
declare const Editor: {
createEditor(): IEditor;
};
export default Editor;
export { HOVER_COMMAND } from './event';