UNPKG

@flxbl-io/sfp

Version:

sfp is a CLI tool to help you manage your Salesforce projects in an artifact centric model

17 lines (16 loc) 508 B
import { Connection } from '@salesforce/core'; export default class ApexCodeCoverageAggregateFetcher { private conn; constructor(conn: Connection); /** * Query ApexCodeCoverageAggregate by list of ApexClassorTriggerId * @param listOfApexClassOrTriggerId * @returns */ fetchACCAById(listOfApexClassOrTriggerId: string[]): Promise<{ ApexClassOrTriggerId: string; NumLinesCovered: number; NumLinesUncovered: number; Coverage: any; }[]>; }