Preparing search index...

    Computed shopping list item - derived from menu and recipes. Purchase state is merged from the PurchasedIngredients table.

    type ComputedShoppingItem = {
        name: string;
        type: TListFilter;
        quantity: string;
        unit: string;
        recipeTitles: string[];
        purchased: boolean;
    }
    Index

    Properties

    name: string
    quantity: string
    unit: string
    recipeTitles: string[]
    purchased: boolean