@1771technologies/lytenyte-pro
Version:
Blazingly fast headless React data grid with 100s of features.
8 lines (7 loc) • 598 B
TypeScript
import { type ReactNode } from "react";
import type { TreeViewSelectAllParams } from "./types";
import type { API } from "../../types";
export declare function SelectAll({ api, render, }: {
render?: (params: TreeViewSelectAllParams) => ReactNode;
api: API;
}): string | number | bigint | boolean | Iterable<ReactNode> | Promise<string | number | bigint | boolean | import("react").ReactPortal | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | import("react/jsx-runtime").JSX.Element | null | undefined;