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) • 738 B
TypeScript
export declare function deployErrorsToMarkdown(errorsAndTips: Array<any>): string;
export declare function testFailuresToMarkdown(testFailures: any[]): string;
export declare function deployCodeCoverageToMarkdown(orgCoverage: number, orgCoverageTarget: number, options: {
check: boolean;
testClasses?: string;
}): string;
export declare function mdTableCell(str: string): string;
export declare function flowDiffToMarkdownForPullRequest(flowNames: string[], fromCommit: string, toCommit: string, truncatedNb?: number): Promise<any>;
export declare function extractImagesFromMarkdown(markdown: string, sourceFile: string | null): any[];
export declare function replaceImagesInMarkdown(markdown: string, replacements: any): string;