• Get an Array of up to 100 Beatmap.Packs of a specific type!

    Parameters

    • this: API
    • type:
          | "standard"
          | "artist"
          | "loved"
          | "featured"
          | "tournament"
          | "chart"
          | "theme" = "standard"

      The type of the BeatmapPacks (defaults to standard)

    • Optionalcursor_string: string

      Use a response's cursor_string with the same parameters to get the next "page" of results!

    Returns Promise<{
        beatmap_packs: Pack[];
        cursor_string: string | null;
    }>