recipes/web/domain/ingredient/types.ts

5 lines
81 B
TypeScript
Raw Normal View History

2022-05-27 01:08:25 +03:00
export interface Ingredient {
readonly key: string;
readonly name: string;
}