hoshimi
    Preparing search index...

    Interface UnresolvedLavalinkTrack

    interface UnresolvedLavalinkTrack {
        encoded?: string;
        info: {
            artworkUrl?: string | null;
            author?: string;
            identifier?: string;
            isrc?: string | null;
            isSeekable?: boolean;
            isStream?: boolean;
            length?: number;
            position?: number;
            sourceName?: SourceName;
            title: string;
            uri?: string;
        };
        pluginInfo?: Partial<PluginInfo>;
        userData?: unknown;
    }

    Implemented by

    Index

    Properties

    encoded?: string

    The base64 encoded track.

    info: {
        artworkUrl?: string | null;
        author?: string;
        identifier?: string;
        isrc?: string | null;
        isSeekable?: boolean;
        isStream?: boolean;
        length?: number;
        position?: number;
        sourceName?: SourceName;
        title: string;
        uri?: string;
    }

    The track information.

    Type Declaration

    • OptionalartworkUrl?: string | null

      The URL of the artwork if available.

    • Optionalauthor?: string

      The track author..

    • Optionalidentifier?: string

      The Identifier of the Track.

    • Optionalisrc?: string | null

      If ISRC code is available, it's provided.

    • OptionalisSeekable?: boolean

      Whether the track is seekable.

    • OptionalisStream?: boolean

      Whether the track is a stream.

    • Optionallength?: number

      The duration of the Track.

    • Optionalposition?: number

      The position of the track.

    • OptionalsourceName?: SourceName

      The source name of the track.

    • title: string

      The track title

    • Optionaluri?: string

      The URL of the track.

    pluginInfo?: Partial<PluginInfo>

    The plugin information of the track.

    userData?: unknown

    The user data of the track.