We can pass data from child component to parent using “Output” event emitter.Ex:-
child.component.tsonChildEvent = new EventEmitter();
yourFunction(input: any): void { this.onChildEvent.emit(input);}
parent.component.html