(
mask: M & Record<Exclude<keyof M, keyof Shape>, never>
)
| 1408 | merge<U extends ZodObject>(other: U): ZodObject<util.Extend<Shape, U["shape"]>, U["_zod"]["config"]>; |
| 1409 | |
| 1410 | pick<M extends util.Mask<keyof Shape>>( |
| 1411 | mask: M & Record<Exclude<keyof M, keyof Shape>, never> |
| 1412 | ): ZodObject<util.Flatten<Pick<Shape, Extract<keyof Shape, keyof M>>>, Config>; |
| 1413 |
no outgoing calls
no test coverage detected