@for (token of templateTokens(); track token) {
@if (token.type) {
Type: {{ token.type }}
}
@for (entry of token | keyvalue; track entry.key) {
@if (entry.key !== "type" && isValidValue(entry.value)) {
@if (entry.key === token.type) {
} @else {
{{ entry.key }}:
}
}
}
}
}