mirror of
https://github.com/google/blockly.git
synced 2026-02-09 09:00:10 +01:00
fix!: Make ISelectable.workspace an instance of WorkspaceSvg (#9534)
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
|
||||
// Former goog.module ID: Blockly.ISelectable
|
||||
|
||||
import type {Workspace} from '../workspace.js';
|
||||
import type {WorkspaceSvg} from '../workspace_svg.js';
|
||||
import {IFocusableNode, isFocusableNode} from './i_focusable_node.js';
|
||||
|
||||
/**
|
||||
@@ -20,7 +20,7 @@ import {IFocusableNode, isFocusableNode} from './i_focusable_node.js';
|
||||
export interface ISelectable extends IFocusableNode {
|
||||
id: string;
|
||||
|
||||
workspace: Workspace;
|
||||
workspace: WorkspaceSvg;
|
||||
|
||||
/** Select this. Highlight it visually. */
|
||||
select(): void;
|
||||
|
||||
Reference in New Issue
Block a user