Type Alias PagedSearchController<T>

PagedSearchController: ResultListController<T> & {
    error: Error | null;
    hasData: boolean;
    isError: boolean;
}

Paged search hook result: controller plus TanStack Query status fields.

Type Parameters