1234567891011121314151617181920212223242526 |
- declare namespace API {
- /** 登录参数 */
- type LoginParams = {
- captchaId: string;
- password: string;
- username: string;
- verifyCode: string;
- };
- /** 登录成功结果 */
- type LoginResult = {
- token: string;
- };
- /** 获取验证码参数 */
- type CaptchaParams = {
- width?: number;
- height?: number;
- };
- /** 获取验证码结果 */
- type CaptchaResult = {
- img: string;
- id: string;
- };
- }
|