tasko/actions/copy-list/schema.ts

7 lines
106 B
TypeScript
Raw Normal View History

2024-02-15 20:49:19 -05:00
import { z } from 'zod';
2024-02-14 21:30:10 -05:00
export const CopyList = z.object({
id: z.string(),
boardId: z.string(),
2024-02-15 20:49:19 -05:00
});