Files
notesnook/packages/editor/dist/extensions/react/useReactNodeView.d.ts
2022-05-31 06:49:37 +05:00

8 lines
372 B
TypeScript

/// <reference types="react" />
export interface ReactNodeViewContextProps {
onDragStart: (event: DragEvent) => void;
nodeViewContentRef: (element: HTMLElement | null) => void;
}
export declare const ReactNodeViewContext: import("react").Context<Partial<ReactNodeViewContextProps>>;
export declare const useReactNodeView: () => Partial<ReactNodeViewContextProps>;