The ResultList headless controller offers a high-level interface for designing a common result list UI controller.

Example: result-list.fn.tsx

interface ResultList {
    state: ResultListState;
    fetchMoreResults(): void;
    subscribe(listener: () => void): Unsubscribe;
}

Hierarchy (View Summary)

Methods

Properties

Methods

Properties

The state of the ResultList controller.