/** * 应用配置接口 * * @export * @interface IAppConfig */ export interface IAppConfig { /** * 应用名称 * * @type {string} * @memberof IAppConfig */ appName: string; /** * 应用标题 * * @type {string} * @memberof IAppConfig */ appTitle: string; /** * 系统名称 * * @type {string} * @memberof IAppConfig */ sysName: string; }