@iamtraction/play-dl
    Preparing search index...

    Interface SoundTrackJSON

    interface SoundTrackJSON {
        durationInMs: number;
        durationInSec: number;
        fetched: boolean;
        formats: SoundCloudTrackFormat[];
        id: number;
        name: string;
        permalink: string;
        publisher:
            | {
                artist: string;
                contains_music: boolean;
                id: number;
                name: string;
                writer_composer: string;
            }
            | null;
        thumbnail: string;
        url: string;
        user: SoundCloudUser;
    }
    Index
    durationInMs: number

    SoundCloud Track Duration in miili seconds

    durationInSec: number

    SoundCloud Track Duration in seconds

    fetched: boolean

    SoundCloud Track fetched status

    SoundCloud Track formats data

    id: number

    SoundCloud Track ID

    name: string

    SoundCloud Track Name

    permalink: string

    User friendly SoundCloud track URL

    publisher:
        | {
            artist: string;
            contains_music: boolean;
            id: number;
            name: string;
            writer_composer: string;
        }
        | null

    SoundCloud Track Publisher Data

    thumbnail: string

    SoundCloud Track thumbnail

    url: string

    SoundCloud Track url

    SoundCloud Track user data