tasko/actions/delete-card/types.ts
2024-02-15 20:49:19 -05:00

9 lines
269 B
TypeScript

import { z } from 'zod';
import { Card } from '@prisma/client';
import { ActionState } from '@/lib/create-safe-action';
import { DeleteCard } from './schema';
export type InputType = z.infer<typeof DeleteCard>;
export type ReturnType = ActionState<InputType, Card>;