UNPKG

323 BTypeScriptView Raw
1import { AuthErrorMessages, AuthErrorTypes } from './types';
2export declare class AuthError extends Error {
3 log: string;
4 constructor(type: AuthErrorTypes);
5}
6export declare class NoUserPoolError extends AuthError {
7 constructor(type: AuthErrorTypes);
8}
9export declare const authErrorMessages: AuthErrorMessages;