UNPKG

@airplane/views

Version:

A React library for building Airplane views. Views components are optimized in style and functionality to produce internal apps that are easy to build and maintain.

7 lines (6 loc) 374 B
import { DefaultParams, ParamValues } from "../../client"; import { TableProps } from "./Table.types"; export declare const Table: { <TRowData extends object = Record<string, any>, TParams extends ParamValues | undefined = DefaultParams, TOutput = any>(props: TableProps<TRowData, TParams, TOutput>): import("react/jsx-runtime").JSX.Element; displayName: string; };