export type PaymentMethodType = 'Card'|'VirtualAccount'|'Mobile'|'Transfer'|'NaverPay'|'KakaoPay'|'Payco'; export type DanalCreateOrderRequest = { /** 충전할 포인트 (VAT 제외). PG 결제 총액은 서버에서 VAT 10% 별도 가산. */ amount: number; paymentMethod: PaymentMethodType; }; export type DanalConfirmRequest = { orderID: string; transactionID: string; method: string }