class TaskadeProjectLoaderClass representing a document loader for loading Taskade project. It extends the BaseDocumentLoader and implements the TaskadeLoaderParams interface. The constructor takes a config object as a parameter, which contains the personal access token and project ID.
const loader = new TaskadeProjectLoader({
personalAccessToken: "TASKADE_PERSONAL_ACCESS_TOKEN",
projectId: "projectId",
});
const docs = await loader.load();