import {Component, ViewChild} from '@angular/core' import {CoRequestManagerComponent} from '../../co-request-manager' @Component({ selector: 'app', template: ` ` }) export class AppComponent { @ViewChild(CoRequestManagerComponent) coRequestManagerComponent: CoRequestManagerComponent public makeRequest () { let params = this.coRequestManagerComponent.coRequestFormComponent.request() console.log(params) } }