Skip to content

Commit

Permalink
Fix: inject function options dictionary has wrong type definition (#6231
Browse files Browse the repository at this point in the history
)
  • Loading branch information
andyanday33 authored Jun 23, 2022
1 parent b91f360 commit 233cce8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typings/blockly.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25686,7 +25686,7 @@ declare module "core/inject" {
* @return {!WorkspaceSvg} Newly created main workspace.
* @alias Blockly.inject
*/
export function inject(container: Element | string, opt_options?: (() => void) | undefined): WorkspaceSvg;
export function inject(container: Element | string, opt_options?: Object | undefined): WorkspaceSvg;
import { WorkspaceSvg } from "core/workspace_svg";
}
declare module "core/blockly" {
Expand Down

0 comments on commit 233cce8

Please sign in to comment.