2
0
Files
bot/packages/schemas/features/events/start/schema.ts

8 lines
206 B
TypeScript
Raw Normal View History

import { z } from 'zod'
import { eventBaseSchema } from '../shared'
import { EventType } from '../constants'
export const startEventSchema = eventBaseSchema.extend({
type: z.literal(EventType.START),
})