Interface representing the parameters for configuring the JiraProjectLoader.

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

Properties

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