Files
2025-05-15 13:32:55 +10:00

2 lines
56 B
TypeScript

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