()
| 1472 | return this.clone({ ...this._zod.def, catchall: unknown() }); |
| 1473 | }, |
| 1474 | loose() { |
| 1475 | return this.clone({ ...this._zod.def, catchall: unknown() }); |
| 1476 | }, |
| 1477 | strict() { |
| 1478 | return this.clone({ ...this._zod.def, catchall: never() }); |
| 1479 | }, |