tasko/types.ts

10 lines
157 B
TypeScript
Raw Normal View History

2024-02-15 20:49:19 -05:00
import { Card, List } from '@prisma/client';
2024-02-14 21:30:10 -05:00
export type ListWithCards = List & {
cards: Card[];
};
export type CardWithList = Card & {
list: List;
};