2023-03-29 11:22:11 +00:00
|
|
|
---
|
|
|
|
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 |
|
|
|
|
| -------- | --------- | -------------------------------------------- | --------------------------------------------- | ------- |
|
2023-11-29 12:06:05 +00:00
|
|
|
| ranges | | Array<\{ start: number; end: number; \}> | The covered range as start and end positions. | |
|
2023-03-29 11:22:11 +00:00
|
|
|
| text | | string | The content of the style sheet or script. | |
|
|
|
|
| url | | string | The URL of the style sheet or script. | |
|