main.cesium.KmlTourWait.kt Maven / Gradle / Ivy
// Automatically generated - do not modify!
@file:Suppress(
"NON_EXTERNAL_DECLARATION_IN_INAPPROPRIATE_FILE",
)
package cesium
/**
* Pauses the KmlTour for a given number of seconds.
* @see Online Documentation
*
* @constructor
* @param [duration] entry duration
* @see Online Documentation
*/
@JsName("\$cesium__KmlTourWait")
external class KmlTourWait(duration: Double) {
/**
* Play this playlist entry
* @param [done] function which will be called when playback ends
* @see Online Documentation
*/
fun play(done: DoneCallback)
/**
* Stop execution of curent entry, cancel curent timeout
* @see Online Documentation
*/
fun stop()
}