Spaces:
Paused
Paused
File size: 324 Bytes
e5c2fd4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import { z } from "zod"
// We're keeping a simple non-relational schema here.
// IRL, you will have a schema for your data models.
export const taskSchema = z.object({
id: z.string(),
title: z.string(),
status: z.string(),
label: z.string(),
priority: z.string(),
})
export type Task = z.infer<typeof taskSchema> |