UNPKG
znv
Version:
latest (0.5.0)
next (0.5.0-rc.0)
0.5.0
0.5.0-rc.0
0.4.0
0.3.2
0.3.1
0.3.0
0.2.0
0.1.0
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Parse your environment with Zod schemas
github.com/lostfictions/znv
lostfictions/znv
znv
/
dist
/
extra-schemas.js
6 lines
•
268 B
JavaScript
View Raw
1
2
3
4
5
6
import
*
as
z
from
"zod"
;
export
const
port
= (
) => z.
number
().
int
().
nonnegative
().
lte
(
65535
);
export
const
deprecate
= (
) => z .
undefined
({
invalid_type_error
:
"This var is deprecated."
}) .
transform
(
() =>
undefined
);
//# sourceMappingURL=extra-schemas.js.map