🎨 update

This commit is contained in:
2024-12-24 00:37:50 +08:00
parent 927f2d63a4
commit 69ee63ca4e
14 changed files with 63 additions and 19 deletions

5
src/types/response.d.ts vendored Normal file
View File

@@ -0,0 +1,5 @@
export interface Response {
code: number;
data?: any;
msg: string;
}