Socket
Socket
Sign inDemoInstall

@types/istanbul-reports

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/istanbul-reports

TypeScript definitions for istanbul-reports


Version published
Weekly downloads
30M
decreased by-2.43%
Maintainers
1
Weekly downloads
 
Created

What is @types/istanbul-reports?

The @types/istanbul-reports package provides TypeScript type definitions for the istanbul-reports package, which is used for generating code coverage reports in various formats as part of the Istanbul code coverage tooling. These type definitions enable TypeScript developers to work with istanbul-reports in a type-safe manner, ensuring that they use the API correctly according to the expected types.

What are @types/istanbul-reports's main functionalities?

Type definitions for creating coverage reports

This code demonstrates how to use the istanbul-api package along with type definitions from @types/istanbul-reports to create a reporter and generate coverage reports in JSON, LCOV, and text formats. The CoverageMap type is used to ensure the coverage data passed to the reporter.write method is correctly typed.

import { createReporter } from 'istanbul-api';
import { FileCoverage, CoverageMap } from 'istanbul-lib-coverage';

const reporter = createReporter();
reporter.addAll(['json', 'lcov', 'text']);
reporter.write(coverageMap);

Other packages similar to @types/istanbul-reports

FAQs

Package last updated on 07 Nov 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc