UNPKG

@portone/browser-sdk

Version:

PortOne SDK for browser

14 lines (13 loc) 235 B
/** * **시작 지점과 종료 지점이 모두 있는 기간 범위** */ export type OfferPeriodRangeFromTo = { /** * **시작 시점** */ from: string; /** * **종료 지점** */ to: string; };