UNPKG

youtube-moosick

Version:

Unofficial Youtube music API, fully written in TypeScript

7 lines 278 B
import { ClientError } from './client.error.js'; export class IllegalInvocationError extends ClientError { constructor(message) { super(`Method was invoked illegally${message ? `: ${message}` : ''}`); } } //# sourceMappingURL=illegalInvocation.error.js.map