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

chrome.sockets.tcpServer.bindings.SocketProperties.scala Maven / Gradle / Ivy

package chrome.sockets.tcpServer.bindings

import scala.scalajs.js

@js.native
trait SocketProperties extends js.Object {

  def persistent: js.UndefOr[Boolean] = js.native

  def name: js.UndefOr[String] = js.native

}

object SocketProperties {

  def apply(persistent: js.UndefOr[Boolean] = js.undefined,
            name: js.UndefOr[String] = js.undefined): SocketProperties = {
    js.Dynamic
      .literal(
          persistent = persistent,
          name = name
      )
      .asInstanceOf[SocketProperties]
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy