UNPKG

@tragedy-labs/sprite

Version:

A TypeScript driver for ArcadeDB

14 lines (13 loc) 343 B
export interface ArcadeFetchErrorDescription { statusText: string; extended: string; } /** * The error thrown when the fetch() method of the Sprite class encounters an error. */ export declare class ArcadeFetchError extends Error { detail: string; error: string; exception: string; constructor(response: Response); }