tasko/actions/update-card/types.ts

9 lines
268 B
TypeScript
Raw Normal View History

2024-02-15 02:30:10 +00:00
import { z } from "zod";
import { Card } from "@prisma/client";
import { ActionState } from "@/lib/create-safe-action";
import { UpdateCard } from "./schema";
export type InputType = z.infer<typeof UpdateCard>;
export type ReturnType = ActionState<InputType, Card>;