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; };