Devendra174's picture
Upload folder using huggingface_hub
f5071ca verified
raw
history blame contribute delete
349 Bytes
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[];
}