@1771technologies/lytenyte-pro
Version:
Blazingly fast headless React data grid with 100s of features.
9 lines (8 loc) • 449 B
TypeScript
import type { PropsWithChildren } from "react";
import type { Column, Grid } from "../+types";
import type { PathBranch } from "@1771technologies/lytenyte-shared";
export interface ColumnManagerRootProps<T> {
readonly grid: Grid<T>;
readonly lookup: Record<string, PathBranch<Column<any>>>;
}
export declare function Root<T>({ grid, lookup, children }: PropsWithChildren<ColumnManagerRootProps<T>>): import("react/jsx-runtime").JSX.Element;