AjaxResult.ts 93 B

123456
  1. interface AjaxResult<T> {
  2. code: string
  3. msg: string
  4. data: T
  5. }
  6. export default AjaxResult