
main.react.virtual.Size.kt Maven / Gradle / Ivy
package react.virtual
import kotlinx.js.jso
external interface Size {
var width: Int
var height: Int
}
fun Size(
width: Int,
height: Int,
): Size =
jso {
this.width = width
this.height = height
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy