...
"no-unsafe-any": true
...
...
@Input() public get value(): string {
return this._value;
}
public set value(newValue: string) {
this._value = newValue;
this.valueChange.emit(this.value);
}
...
@Input()
public value: string;
@Output()
public valueChange: EventEmitter<string>;