//#region src/utils.d.ts
type MaybePromise<T> = T | Promise<T>;
//#endregion
export { MaybePromise as t };