From 01b0dde503393c8a8c57213753d38517e9324a6e Mon Sep 17 00:00:00 2001 From: Alexander Rose <alex.rose@rcsb.org> Date: Mon, 30 Sep 2019 16:38:55 -0700 Subject: [PATCH] set plugin Context.customState: unknown --- src/mol-plugin/context.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mol-plugin/context.ts b/src/mol-plugin/context.ts index f79d6ec59..7b0557bb2 100644 --- a/src/mol-plugin/context.ts +++ b/src/mol-plugin/context.ts @@ -137,7 +137,7 @@ export class PluginContext { * Used to store application specific custom state which is then available * to State Actions and similar constructs via the PluginContext. */ - readonly customState: any = Object.create(null); + readonly customState: unknown = Object.create(null); initViewer(canvas: HTMLCanvasElement, container: HTMLDivElement) { try { -- GitLab