Preview:```ts
import {z} from "zod"
const schema = (id: string) =>
z.object({
[id]: z.any(),
})
// foobar is { [x: string]: any; }
const foobar = schema("abc").parse(null)
// How to get: { abc: any; } instead?```
You can choose specific lines to embed by selecting them before copying the link.