18 lines
606 B
JavaScript
Raw Normal View History

/**
* @module
* @public
* @description
* This module is used for handling user input, by defining and building a [FormObject] that consists of [Control]
2015-04-10 11:15:01 -07:00
* objects, and mapping them onto the DOM. [Control] objects can then be used to read information from the form DOM
* elements.
*
* This module is not included in the `angular2` module; you must import the forms module explicitly.
*
*/
export * from './src/forms/model';
export * from './src/forms/directives';
2015-02-24 11:59:10 -08:00
export * from './src/forms/validators';
export * from './src/forms/validator_directives';
2015-04-10 11:15:01 -07:00
export * from './src/forms/form_builder';