import { LocalStorageService } from './base/services/local-storage.service'; export interface BizAppConfig { [key: string]: any; /** * 后端网址,建议配合 `environment` 一起使用 */ SERVER_URL: string; } export interface App { name?: string; description?: string; year?: number; [key: string]: any; } export declare class AppConfigService { protected localStorageService: LocalStorageService; constructor(serverUrl?: string); SERVER_URL: string; apiContextPath: string; clientId: string; app: App; private get(key); private set(key, value); setApp(val: App): void; setServerURL(url: string): void; getApiServerUrl(): string; }