Loom Engine - v3.1.1
    Preparing search index...

    Interface Recipe

    interface Recipe {
        id: string;
        ingredients: RecipeIngredient[];
        outputs: RecipeOutput[];
        tools?: string[];
        data?: Record<string, unknown>;
    }
    Index

    Properties

    id: string
    ingredients: RecipeIngredient[]
    outputs: RecipeOutput[]
    tools?: string[]
    data?: Record<string, unknown>