UNPKG

@storm-stack/types

Version:

⚡ The storm-stack monorepo contains utility applications, tools, and various libraries to create modern and scalable web applications.

8 lines (7 loc) 279 B
/** * 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` */ export declare const isAsyncIterable: (value: unknown) => value is AsyncIterable<unknown>;