Interface representing the parameters for configuring the TaskadeLoader. It includes optional properties for the personal access token and project id.

interface TaskadeLoaderParams {
    projectId: string;
    personalAccessToken?: string;
}

Implemented by

Properties

projectId: string
personalAccessToken?: string