Skip to content

Instantly share code, notes, and snippets.

@korECM
Created July 11, 2020 14:56
Show Gist options
  • Save korECM/b6e5cf09c06c973d5347bd2f77f24bc8 to your computer and use it in GitHub Desktop.
Save korECM/b6e5cf09c06c973d5347bd2f77f24bc8 to your computer and use it in GitHub Desktop.
First Beverage Abstract Class
abstract class Beverage {
protected description: string;
getDescription(): string {
return this.description;
}
abstract cost(): number;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment