io.laminext.videojs.api.VideoSource.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of videojs_sjs1_3 Show documentation
Show all versions of videojs_sjs1_3 Show documentation
Laminar utilities and components
package io.laminext.videojs.api
import scala.scalajs.js
object VideoSource {
def apply(src: String, `type`: String): VideoSource = {
js.Dynamic.literal(`type` = `type`, src = src).asInstanceOf[VideoSource]
}
}
@js.native
trait VideoSource extends js.Object {
val `type`: String = js.native
val src: String = js.native
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy