Represents the build configuration (platform, flavor) and coverage data for the build

interface CodeCoverageData {
    buildFlavor: string;
    buildPlatform: string;
    coverageStats: CodeCoverageStatistics[];
}

Properties

buildFlavor: string

Flavor of build for which data is retrieved/published

buildPlatform: string

Platform of build for which data is retrieved/published

coverageStats: CodeCoverageStatistics[]

List of coverage data for the build