| 37 | } |
| 38 | |
| 39 | export interface DeviceAuthorizationCodeResponse { |
| 40 | user_code: string; |
| 41 | device_code: string; |
| 42 | verification_uri: string; |
| 43 | verification_uri_complete: string; |
| 44 | prompt: string; |
| 45 | expires_in: number; |
| 46 | interval: number; |
| 47 | client_id: string; |
| 48 | } |
| 49 | |
| 50 | export interface ClientCredentialsError { |
| 51 | errorCode: string; |
nothing calls this directly
no outgoing calls
no test coverage detected