rootObject.ts 144 B

123456789
  1. export interface RootObject<T>{
  2. code: number
  3. msg: string
  4. data: T
  5. }
  6. export interface RootWeatherObject<T>{
  7. result: string
  8. content: T
  9. }