Skip to content

Commit

Permalink
fix(sheet): test type error
Browse files Browse the repository at this point in the history
  • Loading branch information
Dushusir committed Oct 18, 2024
1 parent 28a81d6 commit e493ada
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down

0 comments on commit e493ada

Please sign in to comment.