In my current project, I am developing a shared grid component using Angular2 that requires an id property.
export class GridComponent {
@Input() public id: string;
}
I'm looking for a way to make the id property mandatory. Can you help me with this?