type BaseLink = { type: "link" | "withbadge" text: string href: string } type NormalLink = BaseLink & { type: "link" } type LinkWithBadge = BaseLink & { type: "withbadge"; number: number } export type MyPagesLink = NormalLink | LinkWithBadge