forked from devsam/core
2 lines
48 B
TypeScript
2 lines
48 B
TypeScript
export type Nullable<T> = T | null | undefined;
|