drf-react-by-schema
Version:
Components and Tools for building a React App having Django Rest Framework (DRF) as server
25 lines • 605 B
TypeScript
import { JSX } from 'react';
import { SxProps } from '@mui/material';
import { GridEnrichedBySchemaColDef } from '../../@types';
interface BooleanInputCellProps {
field: string;
id: number | string;
value?: boolean;
column: GridEnrichedBySchemaColDef;
sx?: SxProps;
}
/**
*
*
* @param {BooleanInputCellProps} {
* field,
* id,
* value,
* column,
* sx = {}
* }
* @returns {*} {JSX.Element}
*/
export declare function BooleanInputCell({ field, id, value, sx, }: BooleanInputCellProps): JSX.Element;
export {};
//# sourceMappingURL=BooleanInputCell.d.ts.map