Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
exoego committed Jul 30, 2020
1 parent 65f9564 commit 5c77546
Showing 1 changed file with 6 additions and 0 deletions.
@@ -1,5 +1,6 @@
package io.scalajs.nodejs.tls

import com.thoughtworks.enableIf
import io.scalajs.nodejs.buffer.Buffer
import net.exoego.scalajs.types.util.Factory

Expand All @@ -25,4 +26,9 @@ trait SecureContextOptions extends js.Object {
var secureOptions: js.UndefOr[Int] = js.undefined
var secureProtocol: js.UndefOr[String] = js.undefined
var sessionIdContext: js.UndefOr[String] = js.undefined

@enableIf(io.scalajs.nodejs.internal.CompilerSwitches.gteNodeJs14)
var ticketKeys: js.UndefOr[Buffer] = js.undefined
@enableIf(io.scalajs.nodejs.internal.CompilerSwitches.gteNodeJs14)
var sessionTimeout: js.UndefOr[Double] = js.undefined
}

0 comments on commit 5c77546

Please sign in to comment.