satupeta-main/shared/schemas/news.ts

12 lines
309 B
TypeScript
Raw Normal View History

2026-01-27 02:31:12 +00:00
import { z } from "zod";
export const newsSchema = z.object({
id: z.string().optional(),
name: z.string().min(1, "Judul konten harus diisi"),
description: z.string().optional(),
thumbnail: z.string().optional(),
is_active: z.boolean(),
});
export type NewsFormValues = z.infer<typeof newsSchema>;