Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 242 Bytes

puppeteer.coverageentry.ranges.md

File metadata and controls

18 lines (14 loc) · 242 Bytes
sidebar_label
CoverageEntry.ranges

CoverageEntry.ranges property

The covered range as start and end positions.

Signature:

interface CoverageEntry {
  ranges: {
    start: number;
    end: number;
  }[];
}