export interface BaseApplicationConfig { getTitle(): string; getUrl(): string; getAuthor(): string; setTitle(title: string): void; setUrl(url: string): void; setAuthor(author: string): void; }