From b2c4bfefaa7fa35d47639eb2509dba4b0721b831 Mon Sep 17 00:00:00 2001 From: Andy Hanson Date: Thu, 1 Jun 2017 08:58:37 -0700 Subject: [PATCH] Undo style changes --- types/chart.js/index.d.ts | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/types/chart.js/index.d.ts b/types/chart.js/index.d.ts index 5c3b654459..ec8a7c0c03 100644 --- a/types/chart.js/index.d.ts +++ b/types/chart.js/index.d.ts @@ -13,25 +13,25 @@ declare class Chart { ); config: Chart.ChartConfiguration; data: Chart.ChartData; - public destroy: () => {}; - public update: (duration?: any, lazy?: any) => {}; - public render: (duration?: any, lazy?: any) => {}; - public stop: () => {}; - public resize: () => {}; - public clear: () => {}; - public toBase64: () => string; - public generateLegend: () => {}; - public getElementAtEvent: (e: any) => {}; - public getElementsAtEvent: (e: any) => {}[]; - public getDatasetAtEvent: (e: any) => {}[]; - public static pluginService: PluginServiceStatic; + destroy: () => {}; + update: (duration?: any, lazy?: any) => {}; + render: (duration?: any, lazy?: any) => {}; + stop: () => {}; + resize: () => {}; + clear: () => {}; + toBase64: () => string; + generateLegend: () => {}; + getElementAtEvent: (e: any) => {}; + getElementsAtEvent: (e: any) => {}[]; + getDatasetAtEvent: (e: any) => {}[]; + static pluginService: PluginServiceStatic; static defaults: { global: Chart.ChartOptions; } } declare class PluginServiceStatic { - public register(plugin?: PluginServiceRegistrationOptions): void; + register(plugin?: PluginServiceRegistrationOptions): void; } declare interface PluginServiceRegistrationOptions {