Files
kiss-flixel/feedback-server/externs/node/https/RequestOptions.hx

10 lines
309 B
Haxe

package node.https;
typedef RequestOptions = node.http.RequestOptions & node.tls.SecureContextOptions & {
@:optional
dynamic function checkServerIdentity(hostname:String, cert:node.tls.PeerCertificate):Null<js.lib.Error>;
@:optional
var rejectUnauthorized : Bool;
@:optional
var servername : String;
};