mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
73ca94fe66
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
22 lines
1.0 KiB
Markdown
22 lines
1.0 KiB
Markdown
---
|
|
sidebar_label: CoverageEntry
|
|
---
|
|
|
|
# CoverageEntry interface
|
|
|
|
The CoverageEntry class represents one entry of the coverage report.
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
export interface CoverageEntry
|
|
```
|
|
|
|
## Properties
|
|
|
|
| Property | Modifiers | Type | Description | Default |
|
|
| --------------------------------------------- | --------- | -------------------------------------------- | --------------------------------------------- | ------- |
|
|
| [ranges](./puppeteer.coverageentry.ranges.md) | | Array<{ start: number; end: number; }> | The covered range as start and end positions. | |
|
|
| [text](./puppeteer.coverageentry.text.md) | | string | The content of the style sheet or script. | |
|
|
| [url](./puppeteer.coverageentry.url.md) | | string | The URL of the style sheet or script. | |
|