| 17 | const resolved = typeof opts === "string" ? { token: opts } : opts; |
| 18 | this.config = resolveConfig(resolved); |
| 19 | this._t = new Transport(this.config, resolved.binaryPath ?? locateBinary()); |
| 20 | } |
| 21 | |
| 22 | static fromEnv(): Client { |
| 23 | return new Client(); |
| 24 | } |
| 25 |
nothing calls this directly
no outgoing calls
no test coverage detected