$ cnpm install @types/karma-firefox-launcher
npm install --save @types/karma-firefox-launcher
This package contains type definitions for karma-firefox-launcher (https://github.com/karma-runner/karma-firefox-launcher#readme).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/karma-firefox-launcher.
// Type definitions for karma-firefox-launcher 2.1
// Project: https://github.com/karma-runner/karma-firefox-launcher#readme
// 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 CustomLauncher {
/**
* configure preferences for the Firefox instance that is loaded
*/
prefs?: {
[name: string]: any;
} | undefined;
/**
* extensions that you want loaded into the browser on startup
*/
extensions?: string[] | undefined;
/**
* custom launcher name
*/
name?: string | undefined;
/**
* location of the Firefox executable
*/
command?: string | undefined;
}
}
These definitions were written by Piotr Błażejewicz.
Copyright 2013 - present © cnpmjs.org | Home |