feat: export ParsedIngredient and ParsedRecipe interfaces for external usage
Test Suite / test (24.15.0) (push) Has been cancelled

This commit is contained in:
Nils-Johan Gynther
2026-05-04 21:35:14 +02:00
parent b52205c8c3
commit 38801f84eb
+2 -2
View File
@@ -7,14 +7,14 @@
// Local Type Definitions
// ============================================================================
interface ParsedIngredient {
export interface ParsedIngredient {
rawName: string;
quantity: number;
unit: string;
note: string | null;
}
interface ParsedRecipe {
export interface ParsedRecipe {
name: string;
description: string;
instructions: string;