AuthError.d.ts 96 B

12345
  1. interface IAuthError extends Error {
  2. name: string;
  3. message: string;
  4. authError: boolean;
  5. }