```ts type Payment = { type: "prepaid"; amount: number; } | { type: "credit-card"; id: string; }; ```