(codeVerifier: string)
| 1944 | } |
| 1945 | |
| 1946 | async saveCodeVerifier(codeVerifier: string): Promise<void> { |
| 1947 | logMCPDebug(this.serverName, `Saving code verifier`) |
| 1948 | this._codeVerifier = codeVerifier |
| 1949 | } |
| 1950 | |
| 1951 | async codeVerifier(): Promise<string> { |
| 1952 | if (!this._codeVerifier) { |
nothing calls this directly
no test coverage detected