Interface ResultList

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 full)

Methods

Properties

Methods

Properties

The state of the ResultList controller.