fix(core): FactoryProvider's deps property should be optional

This commit is contained in:
Igor Minar
2016-08-24 12:53:28 -07:00
committed by Victor Berchet
parent 5d294624fa
commit eb7d8c702c
2 changed files with 2 additions and 2 deletions

View File

@ -554,7 +554,7 @@ export declare class ExpressionChangedAfterItHasBeenCheckedException extends Bas
/** @stable */
export interface FactoryProvider {
deps: any[];
deps?: any[];
multi?: boolean;
provide: any;
useFactory: Function;