From a646d7908abc9bfbae5acacc72c1489f76f5cba3 Mon Sep 17 00:00:00 2001 From: CrescentLeaf Date: Sun, 9 Nov 2025 00:33:01 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E4=B8=A4=E4=B8=AA=E5=AE=A2?= =?UTF-8?q?=E6=88=B7=E7=AB=AF=E5=8D=8F=E8=AE=AE=E7=9A=84=E7=B1=BB=E5=9E=8B?= =?UTF-8?q?=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client-protocol/{bean => type}/ChatType.ts | 0 client-protocol/type/JoinRequestAction.ts | 3 +++ 2 files changed, 3 insertions(+) rename client-protocol/{bean => type}/ChatType.ts (100%) create mode 100644 client-protocol/type/JoinRequestAction.ts diff --git a/client-protocol/bean/ChatType.ts b/client-protocol/type/ChatType.ts similarity index 100% rename from client-protocol/bean/ChatType.ts rename to client-protocol/type/ChatType.ts diff --git a/client-protocol/type/JoinRequestAction.ts b/client-protocol/type/JoinRequestAction.ts new file mode 100644 index 0000000..ba567f3 --- /dev/null +++ b/client-protocol/type/JoinRequestAction.ts @@ -0,0 +1,3 @@ +type JoinRequestAction = 'accept' | 'remove' + +export default JoinRequestAction