tasko/types.ts
2024-02-14 21:30:10 -05:00

9 lines
157 B
TypeScript

import { Card, List } from "@prisma/client";
export type ListWithCards = List & {
cards: Card[];
};
export type CardWithList = Card & {
list: List;
};