(method: string)
| 242 | type ClientAuthMethod = 'client_secret_basic' | 'client_secret_post' | 'none'; |
| 243 | |
| 244 | function isClientAuthMethod(method: string): method is ClientAuthMethod { |
| 245 | return ['client_secret_basic', 'client_secret_post', 'none'].includes(method); |
| 246 | } |
| 247 | |
| 248 | const AUTHORIZATION_CODE_RESPONSE_TYPE = 'code'; |
| 249 | const AUTHORIZATION_CODE_CHALLENGE_METHOD = 'S256'; |
no outgoing calls
no test coverage detected
searching dependent graphs…