FORM_DIRECTIVES = const [NgControlName, NgControlGroup, NgFormControl, NgModel, NgFormModel, NgForm, NgSelectOption, DefaultValueAccessor, NumberValueAccessor, CheckboxControlValueAccessor, SelectControlValueAccessor, RadioControlValueAccessor, NgControlStatus, RequiredValidator, MinLengthValidator, MaxLengthValidator, PatternValidator]

A list of all the form directives used as part of a @Component annotation.

This is a shorthand for importing them each individually.

Example

@Component(
  selector: 'my-app',
  directives: const [FORM_DIRECTIVES]
)
class MyApp {}