PromiseOrValue.d.ts 48 Bytes
Newer Older
1
export type PromiseOrValue<T> = Promise<T> | T;