PromiseOrValue.d.ts 48 B

1
  1. export type PromiseOrValue<T> = Promise<T> | T;