Something went wrong. Try again.
ouija board1
Something went wrong. Try again.
123456789101112131415161718192021import type { EditorCore } from "@jeeboard/core";
export interface ReactEditorHostProps { readonly editor: EditorCore; readonly className?: string;}
export interface ReactEditorBinding { readonly packageName: "@jeeboard/react"; readonly editor: EditorCore;}
export function createReactEditorBinding( editor: EditorCore): ReactEditorBinding { return { packageName: "@jeeboard/react", editor, };}