Skip to content

Instantly share code, notes, and snippets.

@jasonbyrne
Created April 14, 2022 04:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasonbyrne/ff7ccb0c95cec4a62aa45d3402c91569 to your computer and use it in GitHub Desktop.
Save jasonbyrne/ff7ccb0c95cec4a62aa45d3402c91569 to your computer and use it in GitHub Desktop.
Things at a Restaurant
class Drink {
name: string;
price: number;
ounces: number;
}
class Food {
name: string;
price: number;
type: "appetizer" | "entree";
}
class Waiter {
name: string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment