docs: Dependency Injection guides for CLI (#19892)

PR Close #19892
This commit is contained in:
Ward Bell
2017-10-23 17:44:49 -07:00
committed by Jason Aden
parent 5a2531ee45
commit c03186013c
25 changed files with 635 additions and 905 deletions

View File

@ -0,0 +1,10 @@
/*
Must put this interface in its own file instead of app.config.ts
or else TypeScript gives a (bogus) warning:
WARNING in ./src/app/... .ts
"export 'AppConfig' was not found in './app.config'
*/
export interface AppConfig {
apiEndpoint: string;
title: string;
}