inIn order to send data from child component create output property decorated with output() in child component and in the parent bindlisten to the created event. emitEmit this event with new values in the payload when ever it needed.
@Output() public eventName:EventEmitter = new EventEmitter();
to emit this event:
this.eventName.emit(payloadDataObject);