6 lines
94 B
TypeScript
6 lines
94 B
TypeScript
export interface Resp<T>{
|
|
status: number;
|
|
msg: string;
|
|
err: string;
|
|
data: T;
|
|
} |