Refactor code structure for improved readability and maintainability
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:
+21
@@ -0,0 +1,21 @@
|
||||
declare class CreateRecipeIngredientDto {
|
||||
productId?: number;
|
||||
rawName: string;
|
||||
rawLine?: string;
|
||||
quantity?: number;
|
||||
unit?: string;
|
||||
note?: string;
|
||||
matchConfidence?: number;
|
||||
matchSource?: string;
|
||||
alternativeProductIds?: number[];
|
||||
}
|
||||
export declare class CreateRecipeDto {
|
||||
name: string;
|
||||
description?: string;
|
||||
instructions?: string;
|
||||
imageUrl?: string;
|
||||
servings?: number;
|
||||
isPublic?: boolean;
|
||||
ingredients: CreateRecipeIngredientDto[];
|
||||
}
|
||||
export {};
|
||||
Reference in New Issue
Block a user