xframelib
Version:
The accumulated front-end development foundation library originates from projects and serves projects.
20 lines (19 loc) • 438 B
TypeScript
/**
* 刷新提前量(毫秒,ms)
*/
export declare const TOKEN_REFRESH_TIME: number;
/**
* 默认的Token最大有效间隔时间,60分钟,60*60*1000
*/
export declare const TOKEN_VALID_TIMESPAN: number;
/**
* 用户和Token相关服务API
*/
export declare const USER_TOKEN_API: {
Login: string;
ChangeMyPwd: string;
Logout: string;
RefreshToken: string;
CheckToken: string;
GetSystemRights: string;
};