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

chrome.sockets.tcp.bindings.SecureOptions.scala Maven / Gradle / Ivy

package chrome.sockets.tcp.bindings

import scala.scalajs.js

@js.native
trait SecureOptions extends js.Object {

  def tlsVersion: js.UndefOr[TLSVersionBounds] = js.native

}

object SecureOptions {

  def apply(tlsVersion: js.UndefOr[TLSVersionBounds] = js.undefined)
    : SecureOptions = {
    js.Dynamic
      .literal(
          tlsVersion = tlsVersion
      )
      .asInstanceOf[SecureOptions]
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy