Skip to content

Instantly share code, notes, and snippets.

@ducva
Created January 8, 2024 13:46
Show Gist options
  • Select an option

  • Save ducva/18e40ce502c349b096b0fc21848f0c48 to your computer and use it in GitHub Desktop.

Select an option

Save ducva/18e40ce502c349b096b0fc21848f0c48 to your computer and use it in GitHub Desktop.
zod first try
const ChannelConfigSchema = z.union([
LineChannelConfigSchema,
MailChannelConfigSchema
])
export const ChannelSchema = z.object({
id: z.string(),
name: z.string(),
type: z.nativeEnum(ChannelType),
config: ChannelConfigSchema
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment