declare global { type Nullish = { [P in keyof T]?: T[P] | null | undefined; }; } export {};