I have an EventEmitter "action". How can I set the initial Value? For example it's always 'methodX' until I change it to 'methodY'..
Something like this:
export class FieldComponent {
@Output() action: EventEmitter<any> = methodX;
constructor() {
}
public methodX() {
}
}