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

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

Implemented by

Properties

personalAccessToken?: string
projectId: string