/** * 儲存 1campus 的使用者資訊。 */ export interface UserInfo { /** * 名稱。 */ name: string; /** * 帳號。 */ account: string; } /** * 取得目前應用程式相關資訊。 */ export declare class AppContext { /** * 取得目前登入使用者名稱與帳號。 */ static getCurrentUser(): Promise; /** * 取得目前登入的 DSNS。 */ static getDSNS(): Promise; /** * 關閉目前已開啟的模組。 */ static close(): Promise; }