UNPKG

@authsignal/node

Version:

<img width="1070" alt="Authsignal" src="https://raw.githubusercontent.com/authsignal/authsignal-node/main/.github/images/authsignal.png">

10 lines (9 loc) 385 B
import { AxiosError } from "axios"; export declare class AuthsignalError extends Error { statusCode: number; errorCode: string; errorDescription?: string; axiosError?: AxiosError; constructor(statusCode: number, errorCode: string, errorDescription?: string, axiosError?: AxiosError); } export declare function mapToAuthsignalError(error: unknown): AuthsignalError;