mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-01-31 09:03:36 +00:00
9 lines
No EOL
272 B
TypeScript
9 lines
No EOL
272 B
TypeScript
import { z } from "zod";
|
|
import { Board } from "@prisma/client";
|
|
|
|
import { ActionState } from "@/lib/create-safe-action";
|
|
|
|
import { DeleteBoard } from "./schema";
|
|
|
|
export type InputType = z.infer<typeof DeleteBoard>;
|
|
export type ReturnType = ActionState<InputType, Board>; |