(options: any)
| 46 | } |
| 47 | |
| 48 | public addOptions(options: any): void { |
| 49 | options.pfx = this.pfx; |
| 50 | if (this.passphrase) { |
| 51 | options.passphrase = this.passphrase; |
| 52 | } |
| 53 | merge(options, this.defaults); |
| 54 | options.httpsAgent = new https.Agent(options); |
| 55 | } |
| 56 | } |