mirror of
https://github.com/versia-pub/server.git
synced 2026-04-27 20:59:15 +02:00
14 lines
221 B
TypeScript
14 lines
221 B
TypeScript
import { z } from "zod";
|
|
|
|
export const f64 = z
|
|
.number()
|
|
.nonnegative()
|
|
.max(2 ** 64 - 1);
|
|
|
|
export const u64 = z
|
|
.number()
|
|
.int()
|
|
.nonnegative()
|
|
.max(2 ** 64 - 1);
|
|
|
|
export const url = z.url();
|