We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 757bad8 commit 40d0c86Copy full SHA for 40d0c86
1 file changed
global.d.ts
@@ -29,21 +29,4 @@ declare namespace jest {
29
}
30
31
32
-declare const vi: {
33
- fn: <T extends (...args: any[]) => any = (...args: any[]) => any>(
34
- implementation?: T,
35
- ) => jest.MockedFunction<T>;
36
- mock: (moduleName: string, factory?: (importOriginal: <T>() => Promise<T>) => unknown) => void;
37
- spyOn: typeof jest.spyOn;
38
- useFakeTimers: () => void;
39
- useRealTimers: () => void;
40
- advanceTimersByTime: (msToRun: number) => void;
41
- clearAllTimers: () => void;
42
- runAllTimers: () => void;
43
- importActual: <T>(moduleName: string) => Promise<T>;
44
- clearAllMocks: () => void;
45
- resetAllMocks: () => void;
46
- restoreAllMocks: () => void;
47
-};
48
-
49
declare module 'moment/locale/zh-cn';
0 commit comments