Lager - v5.2.0
    Preparing search index...

    Props for the DeliveryListView component.

    This interface defines the structure of the props that are passed to the DeliveryListView component.

    DeliveryListViewProps

    interface DeliveryListViewProps {
        deliveries: null | Delivery[];
        isRefreshing: boolean;
        onRefresh: () => void;
        renderItem: (__namedParameters: { item: Delivery }) => ReactElement;
    }
    Index

    Properties

    deliveries: null | Delivery[]

    An array of delivery items or null if no deliveries are available.

    isRefreshing: boolean

    A boolean indicating whether the list is currently being refreshed.

    onRefresh: () => void

    A function to be called when the list needs to be refreshed.

    renderItem: (__namedParameters: { item: Delivery }) => ReactElement

    A function that renders a delivery item.