Skip to content

fx-flow v0.7.0 / types / AsyncIterableIterator

Interface: AsyncIterableIterator<T>

Extends

Type parameters

T

Methods

[asyncIterator]()

[asyncIterator](): AsyncIterableIterator<T>

Returns

AsyncIterableIterator<T>

Source

node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts:42


next()

next(...args): Promise<IteratorResult<T, any>>

Parameters

• ...args: [] | [undefined]

Returns

Promise<IteratorResult<T, any>>

Inherited from

AsyncIterator.next

Source

node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts:32


return()?

optional return(value?): Promise<IteratorResult<T, any>>

Parameters

value?: any

Returns

Promise<IteratorResult<T, any>>

Inherited from

AsyncIterator.return

Source

node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts:33


throw()?

optional throw(e?): Promise<IteratorResult<T, any>>

Parameters

e?: any

Returns

Promise<IteratorResult<T, any>>

Inherited from

AsyncIterator.throw

Source

node_modules/.pnpm/typescript@5.4.5/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts:34

Released under the MIT License.