skalara-web/types/models.ts
2023-07-30 02:13:35 -04:00

17 lines
254 B
TypeScript

export type Project = {
id: string;
title: string;
description: string;
github: string;
stack: string[];
tasks: Task[];
};
export type Task = {
id: string;
description: string;
priority: string;
dueDate: string;
tags: string[];
};