PromiseOrValue.d.ts 56 B

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