node-musixmatch-api
Version:
Advanced API library for seamless Musixmatch integration.
15 lines • 439 B
TypeScript
declare class MXMException extends Error {
static codes: {
[key: number]: string;
};
status_code: number;
message: string;
requestURL: string;
constructor(status_code: number, requestURL: string, message?: string);
toString(): string;
}
declare class MusixmatchError extends Error {
constructor(message: string);
}
export { MXMException, MusixmatchError };
//# sourceMappingURL=expectations.d.ts.map