Interface RawTrack

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

Properties

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