Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

166
Views
Angular: How to Implicitly infer types when assigning function to an output of a child component

I would like to know if it is possible to implicitly infer the type from the given example of components below :

@Component({
selector:'child',
template:`<button (click)="triggerChange()">Click Me</button>`
})
export class ChildComponent {
   @Output() inputchange = new EventEmitter<string>();

   triggerChange(){
      this.inputchange.emit('Hello!');
   }
}

while reading this output in the parent component

@Component({
template:`<child (inputchange)="childChanged($event)"></child>`
})
export class ParentComponent {

   childChanged(event){
      console.log(event);
   }

}

Currently there is no possible way to implicitly know the type of the output parameter, except if we explicitly define it ( childChanged(event: string){ ... })

So the my question is is there any way to implicitly infer, or know the type of the incoming parameter (or variable) in this case?

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!