--- interface Props { date: Date | string | number; } const { date } = Astro.props; const formattedDate = date instanceof Date ? date : new Date(date); ---