Last active
April 5, 2025 23:40
-
-
Save colinhacks/5d9ab8a86709e9942981d9c10ccb211e to your computer and use it in GitHub Desktop.
Chained `.extend()`
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as z from "zod"; | |
export const a = z.object({ | |
a: z.string(), | |
b: z.string(), | |
c: z.string(), | |
}); | |
export const b = a.omit({ | |
a: true, | |
b: true, | |
c: true, | |
}); | |
export const c = b.extend({ | |
a: z.string(), | |
b: z.string(), | |
c: z.string(), | |
}); | |
export const d = c.omit({ | |
a: true, | |
b: true, | |
c: true, | |
}); | |
export const e = d.extend({ | |
a: z.string(), | |
b: z.string(), | |
c: z.string(), | |
}); | |
export const f = e.omit({ | |
a: true, | |
b: true, | |
c: true, | |
}); | |
export const g = f.extend({ | |
a: z.string(), | |
b: z.string(), | |
c: z.string(), | |
}); | |
export const h = g.omit({ | |
a: true, | |
b: true, | |
c: true, | |
}); | |
export const i = h.extend({ | |
a: z.string(), | |
b: z.string(), | |
c: z.string(), | |
}); | |
export const j = i.omit({ | |
a: true, | |
b: true, | |
c: true, | |
}); | |
export const k = j.extend({ | |
a: z.string(), | |
b: z.string(), | |
c: z.string(), | |
}); | |
export const l = k.omit({ | |
a: true, | |
b: true, | |
c: true, | |
}); | |
export const m = l.extend({ | |
a: z.string(), | |
b: z.string(), | |
c: z.string(), | |
}); | |
export const n = m.omit({ | |
a: true, | |
b: true, | |
c: true, | |
}); | |
export const o = n.extend({ | |
a: z.string(), | |
b: z.string(), | |
c: z.string(), | |
}); | |
export const p = o.omit({ | |
a: true, | |
b: true, | |
c: true, | |
}); | |
export const q = p.extend({ | |
a: z.string(), | |
b: z.string(), | |
c: z.string(), | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment