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

@ -446,7 +446,9 @@ export function setCurrentInjector(injector: Injector | null): Injector|null {
export function inject<T>(
token: Type<T>| InjectionToken<T>, notFoundValue?: undefined, flags?: InjectFlags): T;
export function inject<T>(
token: Type<T>| InjectionToken<T>, notFoundValue: T | null, flags?: InjectFlags): T|null;
token: Type<T>| InjectionToken<T>, notFoundValue: T, flags?: InjectFlags): T;
export function inject<T>(
token: Type<T>| InjectionToken<T>, notFoundValue: null, flags?: InjectFlags): T|null;
export function inject<T>(
token: Type<T>| InjectionToken<T>, notFoundValue?: T | null, flags = InjectFlags.Default): T|
null {