type Awaitable<T> = T | Promise<T> | PromiseLike<T>;

export type { Awaitable };
