Command
generate
Description
right now, when this code is transformed
@ViewChild('sidenav', { read: MatSidenav }) public sidenav: MatSidenav;
the final output looks like this
readonly sidenav = viewChild('sidenav', { read: MatSidenav });
Describe the solution you'd like
it should be like this leaving also the accesibility modifier present
public readonly sidenav = viewChild('sidenav', { read: MatSidenav });
Describe alternatives you've considered
No response