From ee99aec820f6b10d5d3fd40b03da284b782d7b6e Mon Sep 17 00:00:00 2001 From: alschmiedt Date: Mon, 25 Jan 2021 09:48:05 -0800 Subject: [PATCH] Fix toolbox typings (#4588) --- typings/templates/blockly-interfaces.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typings/templates/blockly-interfaces.template b/typings/templates/blockly-interfaces.template index e2880f95e..dd78194d6 100644 --- a/typings/templates/blockly-interfaces.template +++ b/typings/templates/blockly-interfaces.template @@ -2,7 +2,7 @@ declare module Blockly { interface BlocklyOptions { - toolbox?: HTMLElement | string; + toolbox?: Blockly.utils.toolbox.ToolboxDefinition; readOnly?: boolean; trashcan?: boolean; maxInstances?: {[type: string]: number;};