mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-09 04:02:40 -05:00
8 lines
149 B
TypeScript
8 lines
149 B
TypeScript
import { z } from "zod";
|
|
|
|
export const articleDataSchema = z.object({
|
|
title: z.string().min(1),
|
|
author: z.string().min(1),
|
|
date: z.date(),
|
|
});
|