Skip to content

Instantly share code, notes, and snippets.

@johnlokerse
Created November 2, 2023 15:04
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 johnlokerse/ac5fd6c475d72926161d0dfa58221d0d to your computer and use it in GitHub Desktop.
Save johnlokerse/ac5fd6c475d72926161d0dfa58221d0d 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