diff --git a/types/index.esm.d.ts b/types/index.esm.d.ts index df69eb02e..cf1570a31 100644 --- a/types/index.esm.d.ts +++ b/types/index.esm.d.ts @@ -3512,6 +3512,11 @@ export type ChartDataset< { [key in ChartType]: { type: key } & ChartTypeRegistry[key]['datasetOptions'] }[TType] > & ChartDatasetProperties; +/** + * TData represents the data point type. If unspecified, a default is provided + * based on the chart type. + * TLabel represents the label type + */ export interface ChartData< TType extends ChartType = ChartType, TData = DefaultDataPoint,