@montarist/nilvera-api
Version:
An unofficial SDK for integrating with Nilvera e-Invoice, e-Archive services
12 lines (11 loc) • 522 B
TypeScript
export declare class NilveraApiError extends Error {
message: string;
statusCode: number;
errorCode?: string | undefined;
errorDetails?: any | undefined;
requestUrl?: string | undefined;
requestData?: any | undefined;
curlCommand?: string | undefined;
constructor(message: string, statusCode: number, errorCode?: string | undefined, errorDetails?: any | undefined, requestUrl?: string | undefined, requestData?: any | undefined, curlCommand?: string | undefined);
toString(): string;
}