recipes/web/domain/ingredient/types.ts

5 lines
81 B
TypeScript

export interface Ingredient {
readonly key: string;
readonly name: string;
}