Skip to content

Instantly share code, notes, and snippets.

@korECM
Last active July 11, 2020 16:52
Show Gist options
  • Save korECM/1f9c3cdcca1a5e299c66001be0a35ee2 to your computer and use it in GitHub Desktop.
Save korECM/1f9c3cdcca1a5e299c66001be0a35ee2 to your computer and use it in GitHub Desktop.
abstract class Beverage {
protected description: string;
public 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