mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2024-12-28 15:58:33 +01:00
4 lines
55 B
TypeScript
4 lines
55 B
TypeScript
type Nullable<T> = T | null;
|
|
|
|
export default Nullable;
|