2 lines
43 B
TypeScript
2 lines
43 B
TypeScript
export type OrPromise<T> = T | Promise<T>;
|
export type OrPromise<T> = T | Promise<T>;
|