SongGuess
    Preparing search index...
    interface PersistedLobby {
        playlists: {
            cover: string | null;
            hrefURL: string;
            name: string;
            songs: {
                artist: string;
                audioURL: string;
                cover: string | null;
                hrefURL: string;
                name: string;
            }[];
            subtitle?: string;
        }[];
    }
    Index

    Properties

    Properties

    playlists: {
        cover: string | null;
        hrefURL: string;
        name: string;
        songs: {
            artist: string;
            audioURL: string;
            cover: string | null;
            hrefURL: string;
            name: string;
        }[];
        subtitle?: string;
    }[]

    Type Declaration

    • cover: string | null

      Cover URL of the playlist.

    • hrefURL: string

      The URL users will be redirected to when clicking.

    • name: string

      Name of the playlist

    • songs: {
          artist: string;
          audioURL: string;
          cover: string | null;
          hrefURL: string;
          name: string;
      }[]

      A list of song names and music urls

    • Optionalsubtitle?: string

      An optional subtitle with additional information about the playlist