balibabu
fix: test chunk by @tanstack/react-query #1306 (#1719)
36b496a
raw
history blame
294 Bytes
export interface ResponseType<T = any> {
retcode: number;
data: T;
retmsg: string;
status: number;
}
export interface ResponseGetType<T = any> {
data: T;
loading?: boolean;
}
export interface ResponsePostType<T = any> {
data: T;
loading?: boolean;
[key: string]: unknown;
}