Preparing search index...

    Type Alias ingredientObject

    Type representing an ingredient with multiple quantity specifications

    type ingredientObject = {
        name: string;
        unit: string;
        quantityPerPersons: ingredientQuantityPerPersons[];
        note?: string;
    }
    Index

    Properties

    name: string
    unit: string
    quantityPerPersons: ingredientQuantityPerPersons[]
    note?: string

    Optional usage note from additional parentheticals