import { Base, NevoboResponse, Pagination } from "../base"; import { Poule, PouleIndeling } from "./types"; export declare class Poules extends Base { getPoule(poule: string): Promise>; /** * @param team if team is not valid, this request returns the first page of getAllPoules() */ getPoulesForTeam(team: string): Promise>; /** * Poules requires pagination, the limit per page is 1000 * @param pagination */ getAllPoules(pagination: Pagination): Promise>; /** * Get the standings of all teams in a Poule. * I don't know why they named it like this. * @param poule */ getPouleIndelingen(poule: string): Promise>; }