2023-11-09 18:47:11 +01:00

3 lines
65 B
Plaintext

// @flow strict
export type PromiseOrValue<+T> = Promise<T> | T;