Sign in

严涛 / energy-management · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Network
  • energy-management
  • src
  • apertus-axios.d.ts
  • 项目初始化
    f85a61e8
    严涛 authored
    2026-03-23 16:25:30 +0800  
    Browse Files »
apertus-axios.d.ts 358 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
import { AxiosResponse } from 'axios';

declare module 'axios' {
    export interface AxiosResponse<T = any> {
        code: number;
        captchaEnabled: boolean;
        img: string;
        msg: string;
        uuid: string;
        token: string;
        permissions: string[];
        roles: string[];
        user: UserInfo;
        data: T;
    }
}