From 309b5a2eb4a99f20b2dcceca41c7ed1275bcc6ae Mon Sep 17 00:00:00 2001
From: zhangwei <1504152376@qq.com>
Date: 星期二, 22 七月 2025 17:26:08 +0800
Subject: [PATCH] '注册导航上传loading'

---
 src/api/types.ts |   19 +++++++++++++++++++
 1 files changed, 19 insertions(+), 0 deletions(-)

diff --git a/src/api/types.ts b/src/api/types.ts
new file mode 100644
index 0000000..81776b8
--- /dev/null
+++ b/src/api/types.ts
@@ -0,0 +1,19 @@
+export type Result = {
+  success: boolean;
+  result: Array<any>;
+  code: string | number;
+  message: string;
+};
+
+type captchaImg = {
+  expirySeconds: number;
+  message: string;
+  img: string;
+  id: string;
+};
+
+export type CaptchaResult = {
+  success: boolean;
+  result: captchaImg;
+  code: string | number;
+};

--
Gitblit v1.9.1