mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-16 11:47:54 +01:00
8 lines
372 B
TypeScript
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>;
|