All Downloads are FREE. Search and download functionalities are using the official Maven repository.

rxscalajs.facade.BehaviorSubjectFacade.scala Maven / Gradle / Ivy

package rxscalajs.facade
import scala.scalajs.js
import scala.scalajs.js.annotation.JSImport


@js.native
@JSImport("rxjs/Rx", "BehaviorSubject", globalFallback = "Rx.BehaviorSubject")
class BehaviorSubjectFacade[T] protected() extends SubjectFacade[T] {
  def this(_value: T) = this()
  def getValue(): T = js.native
  var value: T = js.native
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy