Preparing search index...

    Tracks which ingredients have been purchased. Ingredient name is the primary key - simple key-value storage.

    type purchasedIngredientElement = {
        ingredientName: string;
        purchased: boolean;
    }
    Index

    Properties

    ingredientName: string
    purchased: boolean