PromiseOrValue.js.flow 66 Bytes
Newer Older
1 2 3
// @flow strict

export type PromiseOrValue<+T> = Promise<T> | T;