2023-11-09 18:47:11 +01:00

2 lines
48 B
TypeScript

export type PromiseOrValue<T> = Promise<T> | T;