mirror of
https://github.com/google/blockly.git
synced 2026-01-30 12:10:12 +01:00
Fix: inject function options dictionary has wrong type definition (#6231)
This commit is contained in:
committed by
GitHub
parent
b91f360f40
commit
233cce8883
2
typings/blockly.d.ts
vendored
2
typings/blockly.d.ts
vendored
@@ -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" {
|
||||
|
||||
Reference in New Issue
Block a user