ra-core
Version:
Core components of react-admin, a frontend Framework for building admin applications on top of REST services, using ES6, React
13 lines • 512 B
TypeScript
import * as React from 'react';
import { DataTableBaseProps, RaRecord } from "..//index.js";
export declare const DataTable: {
(props: Omit<DataTableBaseProps, "hasBulkActions" | "empty" | "loading">): 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