ixfx
    Preparing search index...

    Type Alias GenFactoryNoInput<Out>

    A function which can start a chain, since it takes no input

    type GenFactoryNoInput<Out> = {
        _name: string;
        _type: "GenFactoryNoInput";
        (): AsyncGenerator<Out>;
    }

    Type Parameters

    • Out
    Index

    Properties

    Properties

    _name: string
    _type: "GenFactoryNoInput"