diff --git a/src/pages/index.astro b/src/pages/index.astro index 979437b..24340bc 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -2,43 +2,43 @@ import Serialize from "../Serialize.astro"; import { stringify } from "devalue"; const data = { - name: 'John Doe', - isOkay: true, - mood: null, - now: new Date(), - age: BigInt('3218378192378') -} + nameStr: "John Doe", + isOkayBool: true, + moodNull: null, + nowDate: new Date(), + ageBigInt: BigInt("3218378192378"), +}; export type Data = typeof data; ---
-