UNPKG

typescript-miscellaneous

Version:
2 lines (1 loc) 96 B
export declare type MaybePromiseValue<Type> = Type extends Promise<infer Value> ? Value : Type;