From 1a25a95b044c051f6ead9ba416eb3404e6e7f803 Mon Sep 17 00:00:00 2001 From: Aaron Dodson Date: Mon, 22 Dec 2025 13:11:19 -0800 Subject: [PATCH] fix!: Make `ISelectable.workspace` an instance of `WorkspaceSvg` (#9534) --- 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 5374f50cd..808f358ac 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;