UNPKG

@fullstory/server-api-client

Version:

The official FullStory server API client SDK for NodeJS.

10 lines (9 loc) 408 B
/// <reference types="node" /> import { IncomingHttpHeaders } from 'node:http'; import { FSBaseError } from './base'; export declare class FSParserError extends FSBaseError { httpStatusCode: number; headers: IncomingHttpHeaders; fsErrorPayload: string; constructor(msg: string, httpStatusCode: number, headers: IncomingHttpHeaders, rawResponse: string, cause?: any, additionalProps?: any); }