streambird
Version:
Node.js library for the Streambird API
10 lines (9 loc) • 355 B
TypeScript
import { StreambirdError } from "./StreambirdError";
export declare class StreambirdApiError extends StreambirdError {
readonly errorMessage: string;
readonly errorType: string;
readonly statusCode: number;
private constructor();
static fromResponse(responseBody: unknown): StreambirdApiError;
isClientError(): boolean;
}