Skip to content

Instantly share code, notes, and snippets.

@NhanKhangg98
Created October 2, 2022 08:58
Show Gist options
  • Save NhanKhangg98/c04a338132a520c11fcf59a19cd62f6a to your computer and use it in GitHub Desktop.
Save NhanKhangg98/c04a338132a520c11fcf59a19cd62f6a to your computer and use it in GitHub Desktop.
type Restaurant = {
name: string,
priceBracket: Enumerator<PriceBracket>,
deliveryTimeMinutes: number,
openHour: string,
closeHour: string,
distance: number,
}
type Order = {
order: (string | number)[]
}
@QuocCao-dev
Copy link

order: (string | number)[] => order = [1,2,3, "a", "b", "c"]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment