comic-vine-sdk
Version:
A JS/TS client for the Comic Vine API
11 lines (10 loc) • 372 B
TypeScript
import { BaseError } from './base-error.js';
/**
* @deprecated will be removed in the next major version, use ComicVineGenericRequestError instead!
*/
export declare class ComicVineGenericError extends BaseError {
constructor(message?: string);
}
export declare class ComicVineGenericRequestError extends ComicVineGenericError {
constructor(message?: string);
}