mobilizon.chapril.org-mobil.../js/src/types/todos.ts
Thomas Citharel da42522073
Fix eslint warnings
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2020-11-30 12:48:21 +01:00

13 lines
259 B
TypeScript

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