Web utility
    Preparing search index...

    Interface IteratorController<V, E>

    interface IteratorController<V = any, E = Error> {
        complete: () => any;
        error: (error: E) => any;
        next: (value: V) => any;
    }

    Type Parameters

    Index

    Properties

    Properties

    complete: () => any
    error: (error: E) => any
    next: (value: V) => any