UNPKG

ra-core

Version:

Core components of react-admin, a frontend Framework for building admin applications on top of REST services, using ES6, React

16 lines 608 B
import * as React from 'react'; import type { RaRecord } from "../types.js"; import { DataTableBaseProps } from "../dataTable/DataTableBase.js"; export declare const DataTable: { (props: Omit<DataTableBaseProps, "hasBulkActions" | "empty" | "loading"> & { hasBulkActions?: boolean; }): React.JSX.Element; Col: (props: { children?: React.ReactNode; render?: (record: RaRecord) => React.ReactNode; field?: React.ElementType; source?: string; label?: React.ReactNode; }) => React.JSX.Element | undefined; }; //# sourceMappingURL=DataTable.d.ts.map