3 lines
65 B
Plaintext
3 lines
65 B
Plaintext
// @flow strict
|
|
export type PromiseOrValue<+T> = Promise<T> | T;
|
// @flow strict
|
|
export type PromiseOrValue<+T> = Promise<T> | T;
|