recipes/web/repo/ingredient/types.ts

6 lines
145 B
TypeScript
Raw Normal View History

2022-05-27 01:08:25 +03:00
import { Ingredient } from "../../domain/ingredient/types.ts";
export interface IngredientRepo {
fetchIngredients(): Promise<Ingredient[]>;
}