TypeAlias.PaginationExtra
type PaginationExtra: {
fetchMore: () => void;
loading: boolean;
};
An object allowing extra interactions with the Keyban API.
Type declaration
Name | Type | Description |
---|---|---|
fetchMore ? | () => void | A function to fetch more data when the result is a paginated data type. |
loading | boolean | A boolean indicating if the data is currently being fetched. |