langchain.js
    Preparing search index...

    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;
        }[];
    }
    Index

    Properties

    Properties

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