Interface IteratorController<V, E>

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

Type Parameters

Properties

Properties

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