Presupuestador_web/shared/lib/utilities/index.ts
2024-04-23 17:29:38 +02:00

4 lines
127 B
TypeScript

export type NullOr<T> = T | null;
export type UndefinedOr<T> = T | undefined;
export type EmptyOr<T> = NullOr<UndefinedOr<T>>;