charge.ts 299 B

123456789101112
  1. export type PaymentMethodType = 'Card'|'VirtualAccount'|'Mobile'|'Transfer'|'NaverPay'|'KakaoPay'|'Payco';
  2. export type DanalCreateOrderRequest = {
  3. amount: number;
  4. paymentMethod: PaymentMethodType;
  5. };
  6. export type DanalConfirmRequest = {
  7. orderID: string;
  8. transactionID: string;
  9. method: string
  10. }