I\'m trying to set an input alias in a directive following this example
@Input(\'appAvatarColor\') name: string;
The program is working, but
The right way to do it should be the following:
@Input() appAvatarColor: string;