mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-01-31 00:53:37 +00:00
8 lines
268 B
TypeScript
8 lines
268 B
TypeScript
import { z } from 'zod';
|
|
import { Board } from '@prisma/client';
|
|
|
|
import { ActionState } from '@/lib/create-safe-action';
|
|
import { CopyBoard } from './schema';
|
|
|
|
export type InputType = z.infer<typeof CopyBoard>;
|
|
export type ReturnType = ActionState<InputType, Board>;
|