File size: 109 Bytes
9ee6e3a
09502ac
9ee6e3a
09502ac
 
 
1
2
3
4
5
6
7
export interface ResponseType<T = any> {
  retcode: number;
  data: T;
  retmsg: string;
  status: number;
}