masto
    Preparing search index...

    Interface ListDirectoryParams

    interface ListDirectoryParams {
        limit?: number | null;
        local?: boolean | null;
        offset?: number | null;
        order?: (keyof DirectoryOrderTypeRegistry) | null;
    }
    Index

    Properties

    limit?: number | null

    How many accounts to load. Default 40.

    local?: boolean | null

    Only return local accounts.

    offset?: number | null

    How many accounts to skip before returning results. Default 0.

    order?: (keyof DirectoryOrderTypeRegistry) | null

    active to sort by most recently posted statuses (default) or new to sort by most recently created profiles.