()
| 1475 | return this.clone({ ...this._zod.def, catchall: unknown() }); |
| 1476 | }, |
| 1477 | strict() { |
| 1478 | return this.clone({ ...this._zod.def, catchall: never() }); |
| 1479 | }, |
| 1480 | strip() { |
| 1481 | return this.clone({ ...this._zod.def, catchall: undefined }); |
| 1482 | }, |