SongGuess
    Preparing search index...

    Interface PersistedPlayerPicksQuestion

    interface PersistedPlayerPicksQuestion {
        pickerId: string;
        questionCurrent: number;
        song: {
            artist: string;
            audioURL: string;
            cover: string | null;
            hrefURL: string;
            name: string;
        };
        startPos: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    pickerId: string
    questionCurrent: number
    song: {
        artist: string;
        audioURL: string;
        cover: string | null;
        hrefURL: string;
        name: string;
    }

    Type Declaration

    • artist: string

      The name of the song artist.

    • audioURL: string

      A URL to the audio file of the song. Currently only audio previews from Apple Music and SoundCloud are allowed.

    • cover: string | null

      Cover URL of the song.

    • hrefURL: string

      The URL users will be redirected to when clicking.

    • name: string

      The name of the song.

    startPos: number