npm install ngx-input-observable-decorator
import { Input } from '@angular/core';
import { InputObservable } from 'ngx-input-observable-decorator';
import { Observable } from 'rxjs';
class AComponent {
@Input()
@InputObservable()
textValue: string;
textValue$: Observable<string>; // generated observable of textValue
}