UNPKG

@authsignal/node

Version:

The Authsignal Node.js library for server-side applications.

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;