Skip to content

Commit 7c16c9a

Browse files
authored
chore: remove Nullable type. (#8290)
1 parent c1f78d2 commit 7c16c9a

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

packages/vitest/src/types/general.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
export type { ParsedStack, TestError } from '@vitest/utils'
22

33
export type Awaitable<T> = T | PromiseLike<T>
4-
export type Nullable<T> = T | null | undefined
54
export type Arrayable<T> = T | Array<T>
65
export type ArgumentsType<T> = T extends (...args: infer U) => any ? U : never
76

0 commit comments

Comments
 (0)