]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
[types] parsing is not part of IChartData (#7778)
authorJukka Kurkela <jukka.kurkela@gmail.com>
Thu, 10 Sep 2020 21:53:15 +0000 (00:53 +0300)
committerGitHub <noreply@github.com>
Thu, 10 Sep 2020 21:53:15 +0000 (17:53 -0400)
types/interfaces.d.ts

index 9aa1e750edb8dc0106b62ed1a6eef34ade9c5a92..b821e79c81cb7a65fd74a170dd675c4d95c417d7 100644 (file)
@@ -54,7 +54,7 @@ export type IPolarAreaControllerDataset<T = number> = IChartDataset<T, IPolarAre
 export type IRadarControllerDataset<T = number> = IChartDataset<T, IRadarControllerDatasetOptions>;
 
 export interface IChartData<T = unknown, L = string, DS extends IChartDataset<T> = IChartDataset<T>>
-  extends DeepPartial<IParsingOptions> {
+{
   labels: L[];
   datasets: DS[];
 }