![JAR search and dependency download from the Maven repository](/logo.png)
chrome.tabs.bindings.MoveProperties.scala Maven / Gradle / Ivy
package chrome.tabs.bindings
import chrome.windows.bindings.Window
import scala.scalajs.js
object MoveProperties {
def apply(windowId: js.UndefOr[Window.Id] = js.undefined,
index: Int): MoveProperties = {
js.Dynamic
.literal(
windowId = windowId,
index = index
)
.asInstanceOf[MoveProperties]
}
}
@js.native
trait MoveProperties extends js.Object {
def windowId: js.UndefOr[Window.Id] = js.native
def index: Int = js.native
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy