src/app/features/todos/model/todo-completion.ts
meta details for completion of a Todo item.
Properties |
|
completedAt |
completedAt:
|
Type : Date
|
when the item was completed |
completedBy |
completedBy:
|
Type : string
|
user id of who completed the task |
nextRepetition |
nextRepetition:
|
Type : string
|
Optional |
the next task that was automatically created based on the repetitionInterval |
export interface TodoCompletion {
/** user id of who completed the task */
completedBy: string;
/** when the item was completed */
completedAt: Date;
/** the next task that was automatically created based on the repetitionInterval */
nextRepetition?: string;
}