mirror of
https://github.com/versia-pub/server.git
synced 2025-12-06 08:28:19 +01:00
15 lines
230 B
TypeScript
15 lines
230 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.string().url();
|