/** 外掛模組:用來存放當前登入者的資訊 */ export declare class Settings { /** 使用者資訊 */ static get UserInfo(): UofxUserProfileModel; } /** 使用者基本資訊 */ interface UofxUserProfileModel { /** 帳號 */ account: string; /** 姓名 */ name: string; /** 公司 Id */ corpId: string; /** 公司名稱 */ corpName: string; /** 公司代號 */ corpCode: string; /** 語系 */ culture: string; } export {};