UNPKG

player-engine

Version:

Play your Musics in Your Discord Music Bot | Discord.js V13 Only

15 lines (14 loc) 367 B
import { Errors } from "./Enums"; export default class PlayerError extends Error { createdAt: Date; readonly code: Errors; readonly message: string; readonly createdTimestamp: number; constructor(code: Errors, message: string); toJSON(): { stack: string; code: Errors; created: number; }; toString(): string; }