Preview:```ts
import {z} from "zod"
const options = [1, 2, 3] as const
const SCHEMA = z.enum(options)
type Options = z.infer<typeof SCHEMA>
//^?```
You can choose specific lines to embed by selecting them before copying the link.