blob: 2d37412289e06ff01a34ed74245e476588656674 [file] [log] [blame]
// @flow strict
export type PromiseOrValue<+T> = Promise<T> | T;