refactor(editor): remove block models global type (#10086)

This commit is contained in:
Saul-Mirone
2025-02-11 11:00:57 +00:00
parent a725df6ebe
commit 39eb8625d6
157 changed files with 402 additions and 621 deletions
@@ -2,6 +2,7 @@ import { beforeEach, describe, expect, test, vi } from 'vitest';
import type { Command } from '../command/index.js';
import { CommandManager } from '../command/index.js';
import type { BlockStdScope } from '../scope/block-std-scope.js';
type Command1 = Command<
{
@@ -15,7 +16,7 @@ type Command1 = Command<
type Command2 = Command<{ commandData1: string }, { commandData2: string }>;
describe('CommandManager', () => {
let std: BlockSuite.Std;
let std: BlockStdScope;
let commandManager: CommandManager;
beforeEach(() => {