/** A type that either is asynchronous (awaitable) or not. */
export type MaybePromise<T> = T | PromiseLike<T>;
//# sourceMappingURL=promises.d.ts.map