@aoijs/aoi.music
    Preparing search index...

    Interface ManagerEvents

    interface ManagerEvents {
        audioError(error: any, player: AudioPlayer): this;
        queueEnd(player: AudioPlayer): this;
        queueStart(urls: unknown[], player: AudioPlayer): this;
        trackAdd(
            track:
                | SoundCloudTrackInfo
                | YoutubeTrackInfo
                | LocalFileTrackInfo
                | SpotifyTrackInfo
                | UrlTrackInfo,
            player: AudioPlayer,
        ): this;
        trackEnd(
            track: Track<
                "SoundCloud"
                | "Youtube"
                | "LocalFile"
                | "Spotify"
                | "Url",
            >,
            player: AudioPlayer,
        ): this;
        trackPause(player: AudioPlayer): this;
        trackResume(player: AudioPlayer): this;
        trackStart(
            track: Track<
                "SoundCloud"
                | "Youtube"
                | "LocalFile"
                | "Spotify"
                | "Url",
            >,
            player: AudioPlayer,
        ): this;
    }
    Index

    Methods