Files
cn-rdms-web/src/typings/api/auth.d.ts

21 lines
326 B
TypeScript
Raw Normal View History

2026-03-26 20:18:20 +08:00
declare namespace Api {
/**
* namespace Auth
*
* backend api module: "auth"
*/
namespace Auth {
interface LoginToken {
token: string;
refreshToken: string;
}
interface UserInfo {
userId: string;
userName: string;
roles: string[];
buttons: string[];
}
}
}