Created
October 2, 2022 08:58
-
-
Save NhanKhangg98/c04a338132a520c11fcf59a19cd62f6a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| type Restaurant = { | |
| name: string, | |
| priceBracket: Enumerator<PriceBracket>, | |
| deliveryTimeMinutes: number, | |
| openHour: string, | |
| closeHour: string, | |
| distance: number, | |
| } | |
| type Order = { | |
| order: (string | number)[] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
order: (string | number)[] => order = [1,2,3, "a", "b", "c"]