import type { Branded } from '../framework/types/branded.js' export type SupporterId = Branded<`sup_${string}`, 'SupporterId'> export interface Supporter { id: SupporterId name: string avatarUrl?: string }