Interface Config

An interface to tell the API how the returned Array should be like

interface Config {
    limit?: number;
    offset?: number;
}

Properties

Properties

limit?: number

The maximum amount of elements returned in the array

The server could send less than the limit because it deliberately limits itself; Putting this at 1000 doesn't mean you'll even get close to 200

offset?: number

How many elements that would be at the top of the returned array get skipped (while still filling the array up to the limit)