import { z } from 'zod'; export const createNoteSchema = z.object({ content: z.string().min(1), }); export const updateNoteSchema = z.object({ content: z.string().min(1), }); export type CreateNoteInput = z.infer; export type UpdateNoteInput = z.infer;