UNPKG

synapse-react-client

Version:

[![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synapse-react-client) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettie

11 lines 552 B
import { JSONSchema7Type } from 'json-schema'; import { CellProps, Column } from '@sage-bionetworks/react-datasheet-grid'; export type DateTimeCellProps = CellProps & { colType?: JSONSchema7Type; }; export declare function DateTimeCell({ rowData, setRowData, disabled, colType, }: DateTimeCellProps): import("react/jsx-runtime").JSX.Element; export type DateTimeColumnProps = { colType?: JSONSchema7Type; }; export declare function dateTimeColumn({ colType, }: DateTimeColumnProps): Partial<Column>; //# sourceMappingURL=DateTimeColumn.d.ts.map