File size: 349 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
export interface ILabel {
color: string;
text: string;
}
export interface ITask {
id: number;
completed: boolean;
text: string;
}
export interface ICard {
id: number;
title: string;
labels: ILabel[];
date: string;
tasks: ITask[];
desc?: string;
}
export interface IBoard {
id: number;
title: string;
cards: ICard[];
}
|