--- import Serialize from "../Serialize.astro"; const data = { name: 'John Doe', isOkay: true, mood: null, // now: new Date(), // age: BigInt('3218378192378') } export type Data = typeof data; ---