UNPKG

@1771technologies/lytenyte-pro

Version:

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

9 lines (8 loc) 328 B
import type { PillRowSpec } from "./types"; export interface PillRowContext { readonly expanded: boolean; readonly expandToggle: (s?: boolean) => void; readonly row: PillRowSpec; } export declare const PillRowProvider: import("react").Provider<PillRowContext>; export declare const usePillRow: () => PillRowContext;