sfdx-hardis
Version:
Swiss-army-knife Toolbox for Salesforce. Allows you to define a complete CD/CD Pipeline. Orchestrate base commands and assist users with interactive wizards
16 lines (15 loc) • 795 B
TypeScript
import * as azdev from "azure-devops-node-api";
import { TicketProviderRoot } from "./ticketProviderRoot.js";
import { Ticket } from "./index.js";
import { CommonPullRequestInfo } from "../gitProvider/index.js";
export declare class AzureBoardsProvider extends TicketProviderRoot {
protected serverUrl: string | null;
protected azureApi: InstanceType<typeof azdev.WebApi>;
protected teamProject: string | null;
constructor();
static isAvailable(): boolean;
getLabel(): string;
static getTicketsFromString(text: string, prInfo: CommonPullRequestInfo | null): Promise<Ticket[]>;
collectTicketsInfo(tickets: Ticket[]): Promise<Ticket[]>;
postDeploymentComments(tickets: Ticket[], org: string, pullRequestInfo: CommonPullRequestInfo | null): Promise<Ticket[]>;
}