@1771technologies/lytenyte-pro
Version:
Blazingly fast headless React data grid with 100s of features.
13 lines (12 loc) • 552 B
TypeScript
import { type SlotComponent } from "../hooks/use-slot/index.js";
import type { API, GridSpec } from "../types/index.js";
export interface SelectAllProps {
readonly slot?: SlotComponent<{
readonly indeterminate: boolean;
readonly selected: boolean;
readonly toggle: (forceState?: boolean) => void;
}>;
}
export declare function SelectAll<Spec extends GridSpec>({ api, slot, }: SelectAllProps & {
readonly api: API<Spec>;
}): import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>;