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