/** * Unions a given generic type with `null`. * * I.e. a `$Nullable` will become `T | null`. */ export type Nullable = T | null; //# sourceMappingURL=Nullable.d.ts.map