• Get multiple existing Forum.Topic, optionally in a specific Forum!

    Parameters

    • this: API
    • Optionalconfig: {
          cursor_string?: string;
          forum_id?: number;
          limit?: number;
          sort?: "id_desc" | "id_asc";
      }

      Where you specify filters, sorting options, and the such

      • Optionalcursor_string?: string

        Use a response's cursor_string with the same parameters to get the next "page" of results, so topics in this instance!

      • Optionalforum_id?: number

        From which specific Forum to get the topcis from

      • Optionallimit?: number

        How many topics maximum, up to 50

      • Optionalsort?: "id_desc" | "id_asc"

        "id_asc" to have the oldest post at the beginning of the topics array, "id_desc" to have the newest instead

    Returns Promise<{ cursor_string: null | string; topics: Forum.Topic[] }>

    An object with an array of relevant Forum.Topic, and a cursor_string to allow you to go further