- export type PaymentMethodType = 'Card'|'VirtualAccount'|'Mobile'|'Transfer'|'NaverPay'|'KakaoPay'|'Payco';
- export type DanalCreateOrderRequest = {
- amount: number;
- paymentMethod: PaymentMethodType;
- };
- export type DanalConfirmRequest = {
- orderID: string;
- transactionID: string;
- method: string
- }
|