File

src/app/features/todos/model/todo-completion.ts

Description

meta details for completion of a Todo item.

Index

Properties

Properties

completedAt
completedAt: Date
Type : Date

when the item was completed

completedBy
completedBy: string
Type : string

user id of who completed the task

nextRepetition
nextRepetition: string
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;
}

results matching ""

    No results matching ""