mobilizon.chapril.org-mobil.../js/src/types/todos.ts
Thomas Citharel ee20e03cc2
Migrate to Vue 3 and Vite
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2022-08-11 16:46:31 +02:00

13 lines
261 B
TypeScript

import type { IActor, IPerson } from "@/types/actor";
import { ITodoList } from "./todolist";
export interface ITodo {
id?: string;
title: string;
status: boolean;
dueDate?: string;
creator?: IActor;
assignedTo?: IPerson;
todoList?: ITodoList;
}