Работает.
parent.component.ts
export class AppComponent implements AfterViewInit {
@ViewChild('child', {static: true})
child: ChildComponent;
ngAfterViewInit() {
console.log(this.child.currentPage); // works
}
}
parent.component. html
<app-child #child></app-child>
child.component.ts
export class ChildComponent {
currentPage = 1;
}