| 4 | type Configuration = any; |
| 5 | |
| 6 | export interface AuthConfig { |
| 7 | issuerUrl: string; |
| 8 | clientId: string; |
| 9 | redirectUri?: string; |
| 10 | scopes?: string[]; |
| 11 | } |
| 12 | |
| 13 | export interface AuthResult { |
| 14 | accessToken: string; |
nothing calls this directly
no outgoing calls
no test coverage detected