Lager - v5.2.0
    Preparing search index...

    Type Alias NewDeliveryPropsType

    Props for the DeliveryProductPicker component.

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

    type NewDeliveryPropsType = {
        newDelivery: Partial<Delivery>;
        setNewDelivery: () => void;
        setSelectedProduct: (productsHash: { [key: string]: Product }) => void;
    }
    Index

    Properties

    newDelivery: Partial<Delivery>

    Partial delivery object containing the new delivery details.

    setNewDelivery: () => void

    Function to update the new delivery details.

    setSelectedProduct: (productsHash: { [key: string]: Product }) => void

    Hash map of products keyed by their IDs.