tasko/types.ts
2024-02-15 20:49:19 -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;
};