UNPKG

290 BTypeScriptView Raw
1export declare class ClientError extends Error {
2 message: string;
3 constructor(message: string);
4}
5export declare class NotFound extends ClientError {
6 constructor(type: string, args: any);
7}
8export declare class APIError extends ClientError {
9 constructor(message: string);
10}