8 lines
206 B
TypeScript
8 lines
206 B
TypeScript
![]() |
import { z } from 'zod'
|
||
|
import { eventBaseSchema } from '../shared'
|
||
|
import { EventType } from '../constants'
|
||
|
|
||
|
export const startEventSchema = eventBaseSchema.extend({
|
||
|
type: z.literal(EventType.START),
|
||
|
})
|