Interface SortedListOptions

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

Properties

Properties

limit?: number

Number of entries to return, max 100.

Defaults to 25 as of writing.

offset?: number

How many entries to skip, useful for paginating through the list

Generated using TypeDoc