diff --git a/packages/sheets/src/commands/commands/__tests__/set-col-custom.command.spec.ts b/packages/sheets/src/commands/commands/__tests__/set-col-custom.command.spec.ts index 4e8b475b5bb..644cc069dc2 100644 --- a/packages/sheets/src/commands/commands/__tests__/set-col-custom.command.spec.ts +++ b/packages/sheets/src/commands/commands/__tests__/set-col-custom.command.spec.ts @@ -14,8 +14,9 @@ * limitations under the License. */ -import type { BooleanNumber, ICommandService, type Injector, IUniverInstanceService, IWorkbookData, LocaleType, RedoCommand, UndoCommand, type Univer, UniverInstanceType, type Workbook } from '@univerjs/core'; +import type { Injector, IWorkbookData, Univer, Workbook } from '@univerjs/core'; import type { ISetColCustomMutationParams } from '../../mutations/set-col-custom.mutation'; +import { BooleanNumber, ICommandService, IUniverInstanceService, LocaleType, RedoCommand, UndoCommand, UniverInstanceType } from '@univerjs/core'; import { afterEach, beforeEach, describe, expect, it } from 'vitest'; import { SetColCustomMutation } from '../../mutations/set-col-custom.mutation'; import { SetColCustomCommand } from '../set-col-custom.command'; diff --git a/packages/sheets/src/commands/commands/__tests__/set-row-custom.command.spec.ts b/packages/sheets/src/commands/commands/__tests__/set-row-custom.command.spec.ts index eb79809182f..72040f6fcbd 100644 --- a/packages/sheets/src/commands/commands/__tests__/set-row-custom.command.spec.ts +++ b/packages/sheets/src/commands/commands/__tests__/set-row-custom.command.spec.ts @@ -14,8 +14,9 @@ * limitations under the License. */ -import type { BooleanNumber, ICommandService, type Injector, IUniverInstanceService, IWorkbookData, LocaleType, RedoCommand, UndoCommand, type Univer, UniverInstanceType, type Workbook } from '@univerjs/core'; +import type { Injector, IWorkbookData, Univer, Workbook } from '@univerjs/core'; import type { ISetRowCustomMutationParams } from '../../mutations/set-row-custom.mutation'; +import { BooleanNumber, ICommandService, IUniverInstanceService, LocaleType, RedoCommand, UndoCommand, UniverInstanceType } from '@univerjs/core'; import { afterEach, beforeEach, describe, expect, it } from 'vitest'; import { SetRowCustomMutation } from '../../mutations/set-row-custom.mutation'; import { SetRowCustomCommand } from '../set-row-custom.command';