Interface representing the parameters for configuring the JiraProjectLoader.

interface JiraProjectLoaderParams {
    accessToken?: string;
    createdAfter?: Date;
    host: string;
    limitPerRequest?: number;
    personalAccessToken?: string;
    projectKey: string;
    username?: string;
}

Properties

accessToken?: string
createdAfter?: Date
host: string
limitPerRequest?: number
personalAccessToken?: string
projectKey: string
username?: string