@1771technologies/lytenyte-pro
Version:
Blazingly fast headless React data grid with 100s of features.
9 lines (8 loc) • 328 B
TypeScript
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;