(catchall)
| 1466 | return _enum(Object.keys(this._zod.def.shape)); |
| 1467 | }, |
| 1468 | catchall(catchall) { |
| 1469 | return this.clone({ ...this._zod.def, catchall: catchall as any }); |
| 1470 | }, |
| 1471 | passthrough() { |
| 1472 | return this.clone({ ...this._zod.def, catchall: unknown() }); |
| 1473 | }, |