Preview:```ts
type Address = {
streetAddress: string
city: string
}
type GroupedValue = {
asset: {id: string}
value: string | number | boolean
}
type Field = {
fieldId: string
value?: string | number | Address
groupedValues?: GroupedValue[]
}
...```
You can choose specific lines to embed by selecting them before copying the link.