UNPKG

ra-core

Version:

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

23 lines 675 B
import { type ReactNode, type FC } from 'react'; import { type Identifier } from '../types'; export declare const DataTableConfigContext: import("react").Context<{ expand?: ReactNode | FC<{ id: Identifier; record: any; resource: string; }>; expandSingle: boolean; hasBulkActions: boolean; hover?: boolean | undefined; }>; export declare const useDataTableConfigContext: () => { expand?: ReactNode | FC<{ id: Identifier; record: any; resource: string; }>; expandSingle: boolean; hasBulkActions: boolean; hover?: boolean | undefined; }; //# sourceMappingURL=DataTableConfigContext.d.ts.map