@types/karma-detect-browsers
Advanced tools
Weekly downloads
Readme
npm install --save @types/karma-detect-browsers
This package contains type definitions for karma-detect-browsers (https://github.com/litixsoft/karma-detect-browsers).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/karma-detect-browsers.
// Type definitions for karma-detect-browsers 2.3
// Project: https://github.com/litixsoft/karma-detect-browsers
// Definitions by: Piotr Błażejewicz <https://github.com/peterblazejewicz>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 3.2
import 'karma';
declare module 'karma' {
interface ConfigOptions {
/**
* See https://github.com/karma-runner/karma-coverage/blob/master/docs/configuration.md
*/
detectBrowsers?: KarmaDetectBrowsers | undefined;
}
interface KarmaDetectBrowsers {
/** enable/disable, default is true */
enabled?: boolean | undefined;
/** enable/disable phantomjs support, default is true */
usePhantomJS?: boolean | undefined;
/** use headless mode, for browsers that support it, default is false */
preferHeadless?: boolean | undefined;
/**
* post processing of browsers list
* here you can edit the list of browsers used by karma
*/
postDetection: (availableBrowsers: string[]) => string[];
}
}
These definitions were written by Piotr Błażejewicz.
FAQs
TypeScript definitions for karma-detect-browsers
The npm package @types/karma-detect-browsers receives a total of 653 weekly downloads. As such, @types/karma-detect-browsers popularity was classified as not popular.
We found that @types/karma-detect-browsers demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.