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

9 lines (8 loc) 292 B
import { RCPCHChartProps } from './RCPCHChart/RCPCHChart.types'; interface RenderChartOptions extends Omit<RCPCHChartProps, 'children'> { targetElementId: string; } declare const RCPCHGrowthCharts: { render: (options: RenderChartOptions) => void; }; export default RCPCHGrowthCharts;