//#region src/is-async-iterable.d.ts /** * Check if the provided value's type is `AsyncIterable` * * @param value - The value to type check * @returns An indicator specifying if the object provided is `AsyncIterable` */ declare const isAsyncIterable: (value: unknown) => value is AsyncIterable; //#endregion export { isAsyncIterable }; //# sourceMappingURL=is-async-iterable.d.mts.map