interface Listener<T> {
    complete: (() => void);
    error: ((err: any) => void);
    next: ((x: T) => void);
}

Type Parameters

  • T

Properties

Properties

complete: (() => void)
error: ((err: any) => void)
next: ((x: T) => void)