* Registers handlers for events emitted by this instance. * @param next When supplied, a custom handler for emitted events. * @param error When supplied, a custom handler for an error notification from this emitter. * @param complete When supplied, a custom handler for a completion notifica
(
next?: (value: T) => void,
error?: (error: any) => void,
complete?: () => void,
)
| 96 | * emitter. |
| 97 | */ |
| 98 | subscribe( |
| 99 | next?: (value: T) => void, |
| 100 | error?: (error: any) => void, |
| 101 | complete?: () => void, |
no outgoing calls