2015-06-10 13:51:44 -07:00
|
|
|
import {Form} from './form_interface';
|
2015-07-07 15:53:16 -07:00
|
|
|
import {AbstractControlDirective} from './abstract_control_directive';
|
2015-08-20 14:28:25 -07:00
|
|
|
import {List} from 'angular2/src/core/facade/collection';
|
2015-06-10 13:51:44 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A directive that contains a group of [NgControl].
|
|
|
|
*
|
2015-06-11 09:58:53 -07:00
|
|
|
* Only used by the forms module.
|
2015-06-10 13:51:44 -07:00
|
|
|
*/
|
2015-07-07 15:53:16 -07:00
|
|
|
export class ControlContainer extends AbstractControlDirective {
|
2015-06-10 13:51:44 -07:00
|
|
|
name: string;
|
|
|
|
get formDirective(): Form { return null; }
|
|
|
|
get path(): List<string> { return null; }
|
|
|
|
}
|