Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Caballerog/c1ab04eaf08c7d73bd77228bbc19f615 to your computer and use it in GitHub Desktop.
Save Caballerog/c1ab04eaf08c7d73bd77228bbc19f615 to your computer and use it in GitHub Desktop.
export class Ingredient {
name: string;
amount: string;
constructor(name: string, amount: string) {
this.name = name;
this.amount = amount;
}
showDetails(): string {
return `Ingredient: ${this.name}, Amount: ${this.amount}`;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment