Skip to main content

TypeAlias.PaginationExtra

type PaginationExtra = {
fetchMore?: () => void;
loading: boolean;
};

An object allowing extra interactions with the Keyban API.

Properties

PropertyTypeDescription
fetchMore?() => voidA function to fetch more data when the result is a paginated data type.
loadingbooleanA boolean indicating if the data is currently being fetched.