PromiseOrValue.js.flow 66 B

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