auth_error.d.ts 123 B

123456
  1. export interface AuthError {
  2. code: number;
  3. error: string;
  4. error_description: string;
  5. error_uri?: string;
  6. }