org.scalajs.rx.package.scala Maven / Gradle / Ivy
The newest version!
package org.scalajs
import com.cognitect.transducers.ITransformer
/**
* rx package object
* @author [email protected]
*/
package object rx {
/**
* Represents a Transducer
*/
type Transducer = ITransformer
/**
* Represents an absolute time
*/
type AbsoluteTime = Int
/**
* Represents a period in time
*/
type Period = Int
/**
* Represents a relative time
*/
type RelativeTime = Int
/**
* Represents a time span; the value is always >= 0
*/
type TimeSpan = Int
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy