@portone/server-sdk
Version:
PortOne JavaScript SDK for server-side usage
8 lines (7 loc) • 340 B
TypeScript
import type { Unrecognized } from "../../utils/unrecognized.js";
import type { WebhookBillingKey } from "./WebhookBillingKey.js";
import type { WebhookTransaction } from "./WebhookTransaction.js";
/** 2024-04-25 버전의 웹훅 형식 */
export type Webhook = WebhookTransaction | WebhookBillingKey | {
readonly type: Unrecognized;
};