https://github.com/angular/angular
Raw File
Tip revision: e124c1f333219cf3c154be1063a5a3580456ab6c authored by Alex Eagle on 03 June 2015, 19:14:43 UTC
chore(ts): don't need to hack around default export
Tip revision: e124c1f
forms.ts
/**
 * @module
 * @public
 * @description
 * This module is used for handling user input, by defining and building a {@link ControlGroup} that
 * consists of
 * {@link Control} objects, and mapping them onto the DOM. {@link 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';
export * from './src/forms/validators';
export * from './src/forms/validator_directives';
export * from './src/forms/form_builder';
back to top