auth_error.d.ts 285 B

12345678
  1. import { AuthError as ErrorInterface } from "../interfaces/auth_error";
  2. import { BaseModel } from "./base_model";
  3. export declare class AuthError extends BaseModel implements ErrorInterface {
  4. code: number;
  5. error: string;
  6. error_description: string;
  7. error_uri?: string;
  8. }