MaybePromise.d.ts 84 B

1
  1. export declare type MaybePromise<TResolution> = Promise<TResolution> | TResolution;