### Description As I understand from documentation, there is no decorator that sets up AbstractControlOptions updateOn property. It would be very useful to have one. ### Describe the solution you'd like ``` typescript class User { @updateOn('blur') firstName: string; @updateOn('blur') lastName: string; } ```