2 lines
48 B
TypeScript
2 lines
48 B
TypeScript
export type PromiseOrValue<T> = Promise<T> | T;
|
export type PromiseOrValue<T> = Promise<T> | T;
|