UNPKG

@portone/server-sdk

Version:

PortOne JavaScript SDK for server-side usage

15 lines (14 loc) 599 B
import type { Unrecognized } from "./../../../utils/unrecognized.js"; import type { PlatformExternalPayment } from "./../../platform/transfer/PlatformExternalPayment.js"; import type { PlatformPortOnePayment } from "./../../platform/transfer/PlatformPortOnePayment.js"; /** 결제 정보 */ export type PlatformPayment = /** 외부 결제 정보 */ PlatformExternalPayment /** 포트원 결제 정보 */ | PlatformPortOnePayment | { readonly type: Unrecognized; }; export declare function isUnrecognizedPlatformPayment(entity: PlatformPayment): entity is { readonly type: Unrecognized; };