| 15 | } |
| 16 | |
| 17 | interface AuthorizationState { |
| 18 | redirect_uri: string |
| 19 | response_type: string |
| 20 | state: string |
| 21 | client_id: string |
| 22 | audience?: string |
| 23 | pkce?: { |
| 24 | challenge: string |
| 25 | method: "S256" |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | export type Prettify<T> = { |
| 30 | [K in keyof T]: T[K] |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…