mirror of
https://github.com/rjNemo/federation
synced 2026-06-09 03:36:38 +00:00
1 line
48 B
TypeScript
1 line
48 B
TypeScript
export type PromiseOrValue<T> = Promise<T> | T;
|