It\'s possible to send data from the parent to a child through @Input, or to call a method on the parent from the child with @Output, but I\'d like to do exactly the other w
I think these might be what you're looking for:
https://angular.io/guide/component-interaction#parent-interacts-with-child-via-local-variable
https://angular.io/guide/component-interaction#parent-calls-an-viewchild
You can access child properties and methods using local variables within the template or using the @ViewChild
decorator in the parent's component class.