test(ivy): create todo app in ivy (#22921)

PR Close #22921
This commit is contained in:
Miško Hevery
2018-03-21 17:11:08 -07:00
committed by Alex Rickabaugh
parent 60065935be
commit 55c9fb298f
12 changed files with 1202 additions and 3 deletions

View File

@ -370,7 +370,8 @@ export declare const HostListener: HostListenerDecorator;
/** @experimental */
export declare function inject<T>(token: Type<T> | InjectionToken<T>, notFoundValue?: undefined, flags?: InjectFlags): T;
export declare function inject<T>(token: Type<T> | InjectionToken<T>, notFoundValue: T | null, flags?: InjectFlags): T | null;
export declare function inject<T>(token: Type<T> | InjectionToken<T>, notFoundValue: T, flags?: InjectFlags): T;
export declare function inject<T>(token: Type<T> | InjectionToken<T>, notFoundValue: null, flags?: InjectFlags): T | null;
/** @stable */
export declare const Inject: InjectDecorator;