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

jsMain.web.timers.animationFrame.kt Maven / Gradle / Ivy

package web.timers

import js.core.HighResTimeStamp

sealed external interface FrameRequestId

typealias FrameRequestCallback = (
    time: HighResTimeStamp,
) -> Unit

external fun requestAnimationFrame(
    callback: FrameRequestCallback,
): FrameRequestId

external fun cancelAnimationFrame(
    requestId: FrameRequestId,
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy