11 lines
275 B
TypeScript
11 lines
275 B
TypeScript
/*
|
|
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;
|
|
}
|