synapse-react-client
Version:
[](https://badge.fury.io/js/synapse-react-client) [](https://github.com/prettier/prettie
16 lines • 607 B
TypeScript
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