2 lines
48 B
TypeScript
2 lines
48 B
TypeScript
export type Nullable<T> = T | null | undefined;
|
export type Nullable<T> = T | null | undefined;
|