@maestro-js/iso-zod 1.0.0-alpha.24 → 1.0.0-alpha.4
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.d.ts +8 -8
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -15,14 +15,14 @@ declare const isoZ: {
|
|
|
15
15
|
}, z.core.$ZodType<unknown, unknown, z.core.$ZodTypeInternals<unknown, unknown>>>;
|
|
16
16
|
};
|
|
17
17
|
declare namespace isoZ {
|
|
18
|
-
type instant = ReturnType<typeof
|
|
19
|
-
type dateTime = ReturnType<typeof
|
|
20
|
-
type zonedDateTime = ReturnType<typeof
|
|
21
|
-
type date = ReturnType<typeof
|
|
22
|
-
type time = ReturnType<typeof
|
|
23
|
-
type yearMonth = ReturnType<typeof
|
|
24
|
-
type monthDay = ReturnType<typeof
|
|
25
|
-
type duration = ReturnType<typeof
|
|
18
|
+
type instant = ReturnType<typeof instant>;
|
|
19
|
+
type dateTime = ReturnType<typeof dateTime>;
|
|
20
|
+
type zonedDateTime = ReturnType<typeof zonedDateTime>;
|
|
21
|
+
type date = ReturnType<typeof date>;
|
|
22
|
+
type time = ReturnType<typeof time>;
|
|
23
|
+
type yearMonth = ReturnType<typeof yearMonth>;
|
|
24
|
+
type monthDay = ReturnType<typeof monthDay>;
|
|
25
|
+
type duration = ReturnType<typeof duration>;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
export { isoZ };
|