Skip to content

Instantly share code, notes, and snippets.

@johnlokerse
Created November 2, 2023 15:05
Show Gist options
  • Save johnlokerse/ee7efe886ee4323aedcfaa1e6ec50745 to your computer and use it in GitHub Desktop.
Save johnlokerse/ee7efe886ee4323aedcfaa1e6ec50745 to your computer and use it in GitHub Desktop.
Learn how to enhance objects with User-Defined Types in Azure Bicep blog
type addressType = {
street: string
city: string
country: string
}
type personType = {
name: string
age: int
address: addressType
hasChildren: bool?
}[]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment