mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
13 lines
330 B
TypeScript
13 lines
330 B
TypeScript
import {Form} from './form_interface';
|
|
import {List} from 'angular2/src/facade/collection';
|
|
|
|
/**
|
|
* A directive that contains a group of [NgControl].
|
|
*
|
|
* Only used by the forms module.
|
|
*/
|
|
export class ControlContainer {
|
|
name: string;
|
|
get formDirective(): Form { return null; }
|
|
get path(): List<string> { return null; }
|
|
}
|