From b82d32cad7e119c9a2339d85e81bd25ce6df8d92 Mon Sep 17 00:00:00 2001 From: CrescentLeaf Date: Mon, 22 Sep 2025 23:08:41 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E6=B7=BB=E5=8A=A0=20Chat=20=E9=A1=9E?= =?UTF-8?q?=E5=9E=8B=E7=9A=84=E5=B8=B8=E9=87=8F=E5=AE=9A=E7=BE=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/data/ChatType.ts | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 server/data/ChatType.ts diff --git a/server/data/ChatType.ts b/server/data/ChatType.ts new file mode 100644 index 0000000..0ac05ed --- /dev/null +++ b/server/data/ChatType.ts @@ -0,0 +1,3 @@ +type ChatType = 'private' | 'group' + +export default ChatType