first commit

This commit is contained in:
SnhAenIgseAl
2026-03-31 16:10:12 +08:00
commit 3679c9b8ef
418 changed files with 64994 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import ''
/**
* 响应数据结构
*/
declare global {
interface ResponseData<T = any> {
code: number;
data: T;
message: string;
}
}
export {};