import{defHttp}from'/@/utils/http/axios';import{GetAccountInfoModel}from'./model/accountModel';enumApi{ACCOUNT_INFO='/mock/account/getAccountInfo',SESSION_TIMEOUT='/mock/user/sessionTimeout',TOKEN_EXPIRED='/mock/user/tokenExpired',}// Get personal center-basic settingsexportconstaccountInfoApi=()=>defHttp.get<GetAccountInfoModel>({url:Api.ACCOUNT_INFO});exportconstsessionTimeoutApi=()=>defHttp.post<void>({url:Api.SESSION_TIMEOUT});exportconsttokenExpiredApi=()=>defHttp.post<void>({url:Api.TOKEN_EXPIRED});