mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-13 06:21:21 -05:00
9 lines
152 B
TypeScript
9 lines
152 B
TypeScript
import * as z from "zod";
|
|
|
|
export const votesSchema = z.array(
|
|
z.object({
|
|
score: z.number().min(-2).max(2).int(),
|
|
userId: z.number(),
|
|
})
|
|
);
|