PromiseOrValue.js.flow 65 B

12
  1. // @flow strict
  2. export type PromiseOrValue<+T> = Promise<T> | T;