11 lines
191 B
TypeScript
11 lines
191 B
TypeScript
import { z } from "zod"
|
|
|
|
export const rewardNightSchema = z.object({
|
|
campaign: z.object({
|
|
end: z.string(),
|
|
points: z.number(),
|
|
start: z.string(),
|
|
}),
|
|
points: z.number(),
|
|
})
|