From 80818520bb84706a0340dc175d8ac223493b79d2 Mon Sep 17 00:00:00 2001 From: Aaron Dodson Date: Fri, 19 Dec 2025 13:03:16 -0800 Subject: [PATCH] fix!: Make `ISelectable.workspace` an instance of `WorkspaceSvg` --- core/interfaces/i_selectable.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/interfaces/i_selectable.ts b/core/interfaces/i_selectable.ts index 5374f50cd3a..808f358acc9 100644 --- a/core/interfaces/i_selectable.ts +++ b/core/interfaces/i_selectable.ts @@ -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;