drf-react-by-schema
Version:
Components and Tools for building a React App having Django Rest Framework (DRF) as server
10 lines • 398 B
TypeScript
import React from 'react';
import { SchemaType, SumRowsType } from '../@types';
interface DataTotalsServerProps {
sumRows?: SumRowsType;
totals?: null | Record<string, number>;
schema?: SchemaType;
}
declare const DataTotalsServer: ({ schema, sumRows, totals }: DataTotalsServerProps) => React.JSX.Element;
export default DataTotalsServer;
//# sourceMappingURL=DataTotalsServer.d.ts.map