![JAR search and dependency download from the Maven repository](/logo.png)
chrome.system.display.bindings.Insets.scala Maven / Gradle / Ivy
package chrome.system.display.bindings
import scala.scalajs.js
@js.native
trait Insets extends js.Object {
val left: Int = js.native
val top: Int = js.native
val right: Int = js.native
val bottom: Int = js.native
}
object Insets {
def apply(left: Int, top: Int, right: Int, bottom: Int): Insets = {
js.Dynamic
.literal(
left = left,
top = top,
right = right,
bottom = bottom
)
.asInstanceOf[Insets]
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy