declare type PromiseOr<T> = Promise<T> | T;
export default PromiseOr;
