`npm i zod` ```ts import * as z from "zod"; const Player = z.object({ username: z.string(), xp: z.number() }); ``` expected: hover over `.object` and see some type information actual: `z` is reported as type `any`
npm i zodexpected: hover over
.objectand see some type informationactual:
zis reported as typeany