Preview:```ts
import {z} from "zod"
const nonEmptyString = z.string().min(1)
const foo = z.object({
bar: z.union([
nonEmptyString,
nonEmptyString.array(),
]),
})
export type Foo = z.infer<typeof foo>
// ^?```
You can choose specific lines to embed by selecting them before copying the link.