UNPKG

@deephaven/js-plugin-ag-grid

Version:
16 lines 724 B
/// <reference types="react" /> import type { dh as DhType } from '@deephaven/jsapi-types'; import { WorkspaceSettings } from '@deephaven/redux'; import { AgGridReactProps } from '@ag-grid-community/react'; type AgGridViewProps = { table: DhType.Table | DhType.TreeTable; settings?: WorkspaceSettings; agGridProps?: AgGridReactProps; }; /** * AgGrid view that uses the Server-Side Row Model and a Deephaven table as a data source to display * in AG Grid, with support for value formatting, sorting, and basic filtering operations. */ export declare function AgGridView({ table, settings, agGridProps, }: AgGridViewProps): JSX.Element | null; export default AgGridView; //# sourceMappingURL=AgGridView.d.ts.map