@optique/zod 0.9.0-dev.215 → 0.9.0-dev.224
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +0 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +0 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
package/dist/index.d.cts
CHANGED
|
@@ -99,6 +99,6 @@ interface ZodParserOptions {
|
|
|
99
99
|
*
|
|
100
100
|
* @since 0.7.0
|
|
101
101
|
*/
|
|
102
|
-
declare function zod<T>(schema: z.Schema<T>, options?: ZodParserOptions): ValueParser<
|
|
102
|
+
declare function zod<T>(schema: z.Schema<T>, options?: ZodParserOptions): ValueParser<T>;
|
|
103
103
|
//#endregion
|
|
104
104
|
export { ZodParserOptions, zod };
|
package/dist/index.d.ts
CHANGED
|
@@ -99,6 +99,6 @@ interface ZodParserOptions {
|
|
|
99
99
|
*
|
|
100
100
|
* @since 0.7.0
|
|
101
101
|
*/
|
|
102
|
-
declare function zod<T>(schema: z.Schema<T>, options?: ZodParserOptions): ValueParser<
|
|
102
|
+
declare function zod<T>(schema: z.Schema<T>, options?: ZodParserOptions): ValueParser<T>;
|
|
103
103
|
//#endregion
|
|
104
104
|
export { ZodParserOptions, zod };
|
package/dist/index.js
CHANGED