osu-api-v2-js
    Preparing search index...

    Interface Config

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

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

    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)