From 167c85593b15276eec5d099365501ddd85d15aee Mon Sep 17 00:00:00 2001 From: kurkle Date: Mon, 11 Oct 2021 20:49:35 +0300 Subject: [PATCH] Update types --- types/index.esm.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/types/index.esm.d.ts b/types/index.esm.d.ts index 848d824c15c..9ae7132b459 100644 --- a/types/index.esm.d.ts +++ b/types/index.esm.d.ts @@ -2016,6 +2016,11 @@ export class BasePlatform { * @returns {boolean} true if the canvas is attached to the platform, false if not. */ isAttached(canvas: HTMLCanvasElement): boolean; + /** + * Updates config with platform specific requirements + * @param {ChartConfiguration} config + */ + updateConfig(config: ChartConfiguration): void; } export class BasicPlatform extends BasePlatform {}