Interface representing a Taskade project. It includes properties for the id, text, parentId and completed.

interface TaskadeProject {
    tasks: {
        completed: boolean;
        id: string;
        parentId: string;
        text: string;
    }[];
}

Properties

Properties

tasks: {
    completed: boolean;
    id: string;
    parentId: string;
    text: string;
}[]

Type declaration

  • completed: boolean
  • id: string
  • parentId: string
  • text: string

Generated using TypeDoc