(verifier: string)
| 134 | } |
| 135 | |
| 136 | saveCodeVerifier(verifier: string): void { |
| 137 | this.store.codeVerifier = verifier |
| 138 | writeAuthStore(this.serverName, this.store) |
| 139 | } |
| 140 | |
| 141 | codeVerifier(): string { |
| 142 | if (!this.store.codeVerifier) throw new Error("No PKCE code verifier stored.") |
nothing calls this directly
no test coverage detected