mirror of
https://github.com/rjNemo/federation
synced 2026-06-08 19:26:40 +00:00
2 lines
65 B
Text
2 lines
65 B
Text
// @flow strict
|
|
export type PromiseOrValue<+T> = Promise<T> | T;
|