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