UNPKG

drf-react-by-schema

Version:

Components and Tools for building a React App having Django Rest Framework (DRF) as server

13 lines 639 B
import React from 'react'; import { GridEnrichedBySchemaColDef, Item, MobileListRenderItemType, SchemaType } from '../../@types'; interface DataGridMobileProps { name: string; data: Item[]; columns: GridEnrichedBySchemaColDef[]; schema: SchemaType; customColumnOperations?: (p: GridEnrichedBySchemaColDef) => GridEnrichedBySchemaColDef | Promise<GridEnrichedBySchemaColDef>; MobileListRenderItem: MobileListRenderItemType; } declare const DataGridMobile: React.ForwardRefExoticComponent<DataGridMobileProps & React.RefAttributes<unknown>>; export default DataGridMobile; //# sourceMappingURL=DataGridMobile.d.ts.map