api.d.ts 357 B

12345678910111213141516171819
  1. /** 所有 api 接口的响应数据都应该准守该格式 */
  2. interface ApiResponseData<T> {
  3. code: number
  4. data: T
  5. message: string
  6. total?: number
  7. limit?: number
  8. pageNum?: number
  9. offset?: number
  10. }
  11. /** api配置格式 */
  12. interface ApiConfig {
  13. apiUser?: string
  14. apiContent?: string
  15. apiCow?: string
  16. apiOrder?: string
  17. apiItem?: string
  18. }