UNPKG

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

11 lines (10 loc) 469 B
import { Ticket } from "./index.js"; import { CommonPullRequestInfo } from "../gitProvider/index.js"; export declare abstract class TicketProviderRoot { isActive: boolean; protected token: string | null; getLabel(): string; collectTicketsInfo(tickets: Ticket[]): Promise<Ticket[]>; postDeploymentComments(tickets: Ticket[], _org: string, _pullRequestInfo: CommonPullRequestInfo | null): Promise<Ticket[]>; getDeploymentTag(): Promise<string>; }