NextNotification

interface stable

NOTIFICATIONS A notification representing a "next" from an observable. Can be used with dematerialize.

interface NextNotification<T> {
  kind: 'N'
  value: T
}

Properties

Property Type Description
kind 'N'

The kind of notification. Always "N"

value T

The value of the notification.

© 2015–2021 Google, Inc., Netflix, Inc., Microsoft Corp. and contributors.
Code licensed under an Apache-2.0 License. Documentation licensed under CC BY 4.0.
https://rxjs.dev/api/index/interface/NextNotification