docs(core): update dts file

This commit is contained in:
vsavkin
2016-09-14 15:12:25 -07:00
committed by Igor Minar
parent e33037a2f1
commit 42f60ca303
3 changed files with 43 additions and 38 deletions

View File

@ -235,6 +235,12 @@ export declare type CompilerOptions = {
/** @stable */
export declare const Component: ComponentDecorator;
/** @stable */
export interface ComponentDecorator {
/** @stable */ (obj: Component): TypeDecorator;
new (obj: Component): Component;
}
/** @stable */
export declare class ComponentFactory<C> {
componentType: Type<any>;
@ -367,6 +373,12 @@ export declare function destroyPlatform(): void;
/** @stable */
export declare const Directive: DirectiveDecorator;
/** @stable */
export interface DirectiveDecorator {
/** @stable */ (obj: Directive): TypeDecorator;
new (obj: Directive): Directive;
}
/** @stable */
export declare abstract class DoCheck {
abstract ngDoCheck(): void;