Files
website/src/routes/feedback/schema.ts
bytedream 55798fd294
All checks were successful
delpoy / build-and-deploy (push) Successful in 1m5s
add public feedback/contact option
2024-11-30 03:00:46 +01:00

7 lines
138 B
TypeScript

import { z } from 'zod';
export const FeedbackSubmitSchema = z.object({
content: z.string(),
type: z.enum(['feedback', 'contact'])
});