UNPKG

dpkit

Version:

Fast TypeScript data management framework built on top of the Data Package standard and Polars DataFrames

10 lines (9 loc) 268 B
import type { Schema, Table } from "@dpkit/all"; import React from "react"; export declare function TableGrid(props: { table: Table; schema?: Schema; borderColor?: "green" | "red"; withTypes?: boolean; quit?: boolean; }): React.JSX.Element | null;