I\'d like to make some operation from parent component on child component after child component has been initialised.
you have use detectionChanges for this:
detectionChanges
constructor(private _cd: ChangeDetectorRef){} ngAfterViewInit() { this.childComponent.domMethod('boo'); this._cd.detectChanges(); }