kazagumo
    Preparing search index...

    Interface KazagumoOptions

    interface KazagumoOptions {
        defaultSearchEngine: string;
        defaultSource?: string;
        defaultYoutubeThumbnail?: YoutubeThumbnail;
        extends?: { player?: Constructor<KazagumoPlayer> };
        plugins?: KazagumoPlugin[];
        send: (guildId: string, payload: Payload) => void;
        sourceForceResolve?: string[];
        trackResolver?: (
            this: KazagumoTrack,
            options?: ResolveOptions,
        ) => Promise<boolean>;
    }
    Index

    Properties

    defaultSearchEngine: string

    Default search engine if no engine was provided. Default to youtube. If defaultSource is provided, this will be ignored

    defaultSource?: string

    Default source if no source was provided. Default to defaultSearchEngine

    defaultYoutubeThumbnail?: YoutubeThumbnail

    The default youtube thumbnail's size

    extends?: { player?: Constructor<KazagumoPlayer> }

    Extend some of the Structures

    plugins?: KazagumoPlugin[]

    Kazagumo plugins

    send: (guildId: string, payload: Payload) => void

    Send to guild's shard

    sourceForceResolve?: string[]

    Source that will be forced to resolve when playing it

    trackResolver?: (
        this: KazagumoTrack,
        options?: ResolveOptions,
    ) => Promise<boolean>

    The track resolver. Make sure you set .track for it to work. (I'm not responsible for any error during playback if you don't set it right)