UNPKG

283 BTypeScriptView Raw
1import { Injector } from '@angular/core';
2import { Controller } from './controller';
3export declare class Component<M, V, C extends Controller<M, V>> {
4 model: M;
5 view: V;
6 controller: C;
7 private changeDetectorRef;
8 constructor(controller: C, injector: Injector);
9}