export interface IAuthError {
	code: number;
	error: string;
	error_description: string;
	error_uri?: string;
}
