import type { EasyPayMethodType } from "./../../platform/transfer/EasyPayMethodType.js"; import type { EasyPayProvider } from "./../../common/EasyPayProvider.js"; /** 간편 결제 */ export type PlatformPaymentMethodEasyPay = { type: "EASY_PAY"; /** 간편 결제사 */ provider?: EasyPayProvider; /** 간편 결제 수단 */ methodType?: EasyPayMethodType; };