We can pass data from child component to parent using “Output” event emitter.
Ex:-

child.component.ts
onChildEvent = new EventEmitter();

yourFunction(input: any): void {
this.onChildEvent.emit(input);
}

parent.component.html