I have a object like
private _nodeTypesProps= {
id: newId,
active: false,
name: "",
color: "",
character: "",
props: {
description: true,
notes: true,
lastModified: true,
senstiveInformation: true,
calculation: true
}
}
I want to read props in template
<input [(ngModel)]="_nodeTypesProps.props.description" type="checkbox" id="description"/>
Can any body help me how to read nested properties in object.