Files
recipe-app/backend/dist/meal-plan/dto/create-meal-plan-entry.dto.d.ts
T
Nils-Johan Gynther 969dafdbc6
Test Suite / test (24.15.0) (push) Has been cancelled
Refactor code structure for improved readability and maintainability
2026-05-06 07:37:59 +02:00

6 lines
111 B
TypeScript

export declare class CreateMealPlanEntryDto {
date: string;
recipeId: number;
servings?: number;
}