All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
3 lines
65 B
Plaintext
3 lines
65 B
Plaintext
// @flow strict
|
|
export type PromiseOrValue<+T> = Promise<T> | T;
|