Preparing search index...

    Props for ingredient validation progress

    type IngredientValidationProgressProps = {
        type: "Ingredient";
        items: IngredientWithSimilarity[];
        onValidated: (
            originalIngredient: IngredientWithSimilarity,
            validatedIngredient: ingredientTableElement,
        ) => void;
        progress: ValidationProgress | null;
        onDismissed: () => void;
        onComplete: () => void;
        testID: string;
    }
    Index

    Properties

    type: "Ingredient"
    onValidated: (
        originalIngredient: IngredientWithSimilarity,
        validatedIngredient: ingredientTableElement,
    ) => void
    progress: ValidationProgress | null
    onDismissed: () => void
    onComplete: () => void
    testID: string