TypeAlias.PaginationExtra
type PaginationExtra = {
fetchMore: () => void;
loading: boolean;
};
An object allowing extra interactions with the Keyban API.
Properties
Property | 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. |