UNPKG

@rcpch/digital-growth-charts-react-component-library

Version:

A React component library for the RCPCH digital growth charts using Rollup, TypeScript and Styled-Components

15 lines (14 loc) 488 B
import { Domains } from '../interfaces/Domains'; export declare const pubertyThresholds: { male: { x: number; label: string; }[]; female: { x: number; label: string; }[]; }; export declare function makePubertyThresholds(domains: Domains | null, sex: 'male' | 'female'): any[]; export declare const delayedPubertyThreshold: (sex: 'male' | 'female') => any[]; export declare const lowerPubertyBorder: (d: any, sex: 'male' | 'female') => any;