isAsyncIterable.d.ts 255 B

1234567
  1. /**
  2. * Returns true if the provided object implements the AsyncIterator protocol via
  3. * implementing a `Symbol.asyncIterator` method.
  4. */
  5. export declare function isAsyncIterable(
  6. maybeAsyncIterable: any,
  7. ): maybeAsyncIterable is AsyncIterable<unknown>;