Files
2025-05-15 13:35:49 +10:00

2 lines
56 B
TypeScript

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