youtube-moosick
Version:
Unofficial Youtube music API, fully written in TypeScript
11 lines • 348 B
TypeScript
export declare class ClientError extends Error {
constructor(message?: string);
static from<T extends ClientError>(obj: PlainErrorObject | Error): T;
toPlainObject(): PlainErrorObject;
}
export interface PlainErrorObject {
name: string;
message: string;
stack?: string;
}
//# sourceMappingURL=client.error.d.ts.map