hoshimi
    Preparing search index...

    Interface TrackInfo

    The track information.

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

    Properties

    artworkUrl: string | null

    The URL of the artwork if available.

    author: string

    The track author..

    identifier: string

    The Identifier of the Track.

    isrc: string | null

    If ISRC code is available, it's provided.

    isSeekable: boolean

    Whether the track is seekable.

    isStream: boolean

    Whether the track is a stream.

    length: number

    The duration of the Track.

    position: number

    The position of the track.

    sourceName: SourceName

    The source name of the track.

    title: string

    The track title

    uri: string

    The URL of the track.