UNPKG

@1771technologies/lytenyte-pro

Version:

Blazingly fast headless React data grid with 100s of features.

10 lines (9 loc) 389 B
import type { DropEventParams } from "../+types.js"; interface GridBoxContextValue { readonly accepted: string[]; readonly orientation: "horizontal" | "vertical"; readonly onRootDrop: (p: DropEventParams) => void; } export declare const GridBoxContext: import("react").Context<GridBoxContextValue>; export declare const useGridBoxContext: () => GridBoxContextValue; export {};