NextObserver

OBSERVER INTERFACES

interface NextObserver<T> {
  closed?: boolean
  next: (value: T) => void
  error?: (err: any) => void
  complete?: () => void
}

Properties

PropertyTypeDescription
closed
next
error
complete