FORM_DIRECTIVES

export FORM_DIRECTIVES : Type[]

exported from angular2/common defined in angular2/src/common/forms/directives.ts (line 52)

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

This is a shorthand for importing them each individually.

Example

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