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

jsMain.web.device.DeviceOrientationEvent.kt Maven / Gradle / Ivy

// Automatically generated - do not modify!

@file:Suppress(
    "EXTERNAL_CLASS_CONSTRUCTOR_PROPERTY_PARAMETER",
)

package web.device

import web.events.Event
import web.events.EventInit
import web.events.EventType

external interface DeviceOrientationEventInit : EventInit {
    var absolute: Boolean?
    var alpha: Double?
    var beta: Double?
    var gamma: Double?
}

open external class DeviceOrientationEvent(
    override val type: EventType,
    init: DeviceOrientationEventInit = definedExternally,
) : Event {
    val absolute: Boolean
    val alpha: Double?
    val beta: Double?
    val gamma: Double?

    companion object
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy