mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-01-31 09:03:36 +00:00
6 lines
84 B
TypeScript
6 lines
84 B
TypeScript
|
import { z } from 'zod';
|
||
|
|
||
|
export const CopyBoard = z.object({
|
||
|
id: z.string(),
|
||
|
});
|