/** * 全域系統設定值 */ export declare class Config { private static _serverUrl; /** copyright 年份 */ private static _systemYear; /** 主機 URL */ static set serverUrl(value: string); /** 主機URL */ static get serverUrl(): string; /** copyright 年份 */ static setSystemYear(year: number): void; /** copyright 年份 */ static get systemYear(): any; private static get; private static set; private static getServerUrl; }