Shoukaku
    Preparing search index...

    Interface Track

    interface Track {
        encoded: string;
        info: {
            artworkUrl?: string;
            author: string;
            identifier: string;
            isrc?: string;
            isSeekable: boolean;
            isStream: boolean;
            length: number;
            position: number;
            sourceName: string;
            title: string;
            uri?: string;
        };
        pluginInfo: unknown;
    }
    Index

    Properties

    encoded: string
    info: {
        artworkUrl?: string;
        author: string;
        identifier: string;
        isrc?: string;
        isSeekable: boolean;
        isStream: boolean;
        length: number;
        position: number;
        sourceName: string;
        title: string;
        uri?: string;
    }
    pluginInfo: unknown