Skip to main content
The Deno 2 Release Candidate is here
Learn more
Latest
interface CoverageEntry
import { type CoverageEntry } from "https://deno.land/x/frugal@0.9.6/dep/puppeteer/mod.ts";

The CoverageEntry class represents one entry of the coverage report.

Properties

url: string

The URL of the style sheet or script.

text: string

The content of the style sheet or script.

ranges: Array<{ start: number; end: number; }>

The covered range as start and end positions.