mirror of
https://github.com/ahmadk953/tasko.git
synced 2025-01-30 16:43:37 +00:00
9 lines
157 B
TypeScript
9 lines
157 B
TypeScript
import { Card, List } from '@prisma/client';
|
|
|
|
export type ListWithCards = List & {
|
|
cards: Card[];
|
|
};
|
|
|
|
export type CardWithList = Card & {
|
|
list: List;
|
|
};
|