Skip to content

Commit 1a25a95

Browse files
authored
fix!: Make ISelectable.workspace an instance of WorkspaceSvg (#9534)
1 parent 65caa9f commit 1a25a95

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

core/interfaces/i_selectable.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
// Former goog.module ID: Blockly.ISelectable
88

9-
import type {Workspace} from '../workspace.js';
9+
import type {WorkspaceSvg} from '../workspace_svg.js';
1010
import {IFocusableNode, isFocusableNode} from './i_focusable_node.js';
1111

1212
/**
@@ -20,7 +20,7 @@ import {IFocusableNode, isFocusableNode} from './i_focusable_node.js';
2020
export interface ISelectable extends IFocusableNode {
2121
id: string;
2222

23-
workspace: Workspace;
23+
workspace: WorkspaceSvg;
2424

2525
/** Select this. Highlight it visually. */
2626
select(): void;

0 commit comments

Comments
 (0)