我想问一下这里的GetUserRoleRes接口在axios.get中有什么作用
import axios from "axios";
// 用户角色身份
export type UserRoleType = "user" | "admin";
// 返回
export interface GetUserRoleRes {
userType: UserRoleType;
}
// 获取用户角色身份
export const getUserRole = async () => {
return axios.get<GetUserRoleRes>("https://mysite.com/api/role");
};
指定
response
的data
的类型