fix!: Make ISelectable.workspace an instance of WorkspaceSvg (#9534)

This commit is contained in:
Aaron Dodson
2025-12-22 13:11:19 -08:00
committed by GitHub
parent 65caa9fb7f
commit 1a25a95b04

View File

@@ -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;