Skip to content

Commit

Permalink
fix: fix type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
wzhudev committed Oct 25, 2024
1 parent a3dd11c commit d7ddb5f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import type { IFunctionInfo, ISetDefinedNameMutationParam } from '@univerjs/engi
import {
Disposable,
ICommandService,
Inject,
IUniverInstanceService,
toDisposable,
UniverInstanceType,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import type {
ISetFormulaCalculationNotificationMutation,
} from '@univerjs/engine-formula';
import type { ISetRangeValuesMutationParams } from '@univerjs/sheets';
import { Disposable, ICommandService, throttle } from '@univerjs/core';
import { Disposable, ICommandService, Inject, throttle } from '@univerjs/core';
import {
ActiveDirtyManagerService,
FormulaExecutedStateType,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import type { Nullable } from '@univerjs/core';
import type { IRemoveOtherFormulaMutationParams, ISetFormulaCalculationResultMutation, ISetOtherFormulaMutationParams } from '@univerjs/engine-formula';
import type { IOtherFormulaMarkDirtyParams } from '../commands/mutations/formula.mutation';
import { Disposable, ICommandService, Tools } from '@univerjs/core';
import { Disposable, ICommandService, Inject, Tools } from '@univerjs/core';
import { ActiveDirtyManagerService, RemoveOtherFormulaMutation, SetFormulaCalculationResultMutation, SetOtherFormulaMutation } from '@univerjs/engine-formula';
import { bufferTime, filter, map, Subject } from 'rxjs';
import { OtherFormulaMarkDirty } from '../commands/mutations/formula.mutation';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

import type { BaseFunction } from '@univerjs/engine-formula';
import { createIdentifier } from '@univerjs/core';
import { createIdentifier, Inject } from '@univerjs/core';
import { CustomFunction, FunctionService } from '@univerjs/engine-formula';

export interface IRemoteRegisterFunctionService {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
import type { IDefinedNameMapItem } from '@univerjs/engine-formula';
import {
Disposable,
Inject,
IResourceManagerService,
UniverInstanceType,
} from '@univerjs/core';
Expand Down

0 comments on commit d7ddb5f

Please sign in to comment.