ixfx
    Preparing search index...

    Type Alias Link<In, Out>

    A function which can form part of a chain. It takes an input GenOrData, and returns a new generator.

    type Link<In, Out> = {
        _name?: string;
        (input: GenOrData<In>): AsyncGenerator<Out>;
    }

    Type Parameters

    • In
    • Out
    Index

    Properties

    Properties

    _name?: string