feat: export ParsedIngredient and ParsedRecipe interfaces for external usage
Test Suite / test (24.15.0) (push) Has been cancelled
Test Suite / test (24.15.0) (push) Has been cancelled
This commit is contained in:
@@ -7,14 +7,14 @@
|
|||||||
// Local Type Definitions
|
// Local Type Definitions
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
|
|
||||||
interface ParsedIngredient {
|
export interface ParsedIngredient {
|
||||||
rawName: string;
|
rawName: string;
|
||||||
quantity: number;
|
quantity: number;
|
||||||
unit: string;
|
unit: string;
|
||||||
note: string | null;
|
note: string | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface ParsedRecipe {
|
export interface ParsedRecipe {
|
||||||
name: string;
|
name: string;
|
||||||
description: string;
|
description: string;
|
||||||
instructions: string;
|
instructions: string;
|
||||||
|
|||||||
Reference in New Issue
Block a user