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

16 lines 607 B
import React from 'react'; import { Row } from '@sage-bionetworks/synapse-types'; import dayjs from 'dayjs'; import { ObservationCardSchema } from '../row_renderers/ObservationCard'; export declare const getMaxDate: (timepoints: dayjs.Dayjs[]) => dayjs.Dayjs; type TimelinePhaseProps = { name: string; color: string; rowData: Row[]; schema: ObservationCardSchema; widthPx: number; sql: string; }; declare const TimelinePhase: ({ color, rowData, schema, widthPx, sql, }: TimelinePhaseProps) => React.ReactNode; export default TimelinePhase; //# sourceMappingURL=TimelinePhase.d.ts.map