docs(core): update dts file
This commit is contained in:
12
tools/public_api_guard/core/index.d.ts
vendored
12
tools/public_api_guard/core/index.d.ts
vendored
@ -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;
|
||||
|
Reference in New Issue
Block a user