recipes/web/repo/ingredient/types.ts

7 lines
196 B
TypeScript
Raw Normal View History

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