/** * @type Oauth2ErrorResponse: * * @property error: * * @property error_uri: * * @property error_description: * */ export type Oauth2ErrorResponse = { error: string; error_uri?: string; error_description?: string; } & { [key: string]: any; };