From 4b70adddd3a0c009bf953c1215c627a5ebeed00d Mon Sep 17 00:00:00 2001 From: Heeskim <46983641+lamPolar@users.noreply.github.com> Date: Fri, 29 Nov 2024 12:58:31 +0900 Subject: [PATCH] =?UTF-8?q?fix:=205.3.2-4.ts=20=EC=98=88=EC=A0=9C=EC=BD=94?= =?UTF-8?q?=EB=93=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- "5\354\236\245/5.3.2-4.ts" | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git "a/5\354\236\245/5.3.2-4.ts" "b/5\354\236\245/5.3.2-4.ts" index 3b80f5e..8d753b2 100644 --- "a/5\354\236\245/5.3.2-4.ts" +++ "b/5\354\236\245/5.3.2-4.ts" @@ -1,4 +1,4 @@ type PayMethod = | { account: string; card?: undefined; payMoney?: undefined } - | { account: undefined; card?: string; payMoney?: undefined } - | { account: undefined; card?: undefined; payMoney?: string }; + | { account?: undefined; card: string; payMoney?: undefined } + | { account?: undefined; card?: undefined; payMoney: string };