2 lines
65 B
Text
Executable file
2 lines
65 B
Text
Executable file
// @flow strict
|
|
export type PromiseOrValue<+T> = Promise<T> | T;
|