Presupuestador_web/shared/lib/utilities/index.ts

4 lines
127 B
TypeScript
Raw Normal View History

2024-04-23 15:29:38 +00:00
export type NullOr<T> = T | null;
export type UndefinedOr<T> = T | undefined;
export type EmptyOr<T> = NullOr<UndefinedOr<T>>;