(serverName: string, callbackPort: number, scope?: string)
| 101 | private codeResolve?: (code: string) => void |
| 102 | |
| 103 | constructor(serverName: string, callbackPort: number, scope?: string) { |
| 104 | this.serverName = serverName |
| 105 | this.callbackPort = callbackPort |
| 106 | this.scope = scope |
| 107 | this.store = readAuthStore(serverName) ?? {} |
| 108 | } |
| 109 | |
| 110 | get redirectUrl(): string { |
| 111 | return `http://localhost:${this.callbackPort}/callback` |
nothing calls this directly
no test coverage detected