8.0.5 • Published 2 years ago
@types/karma-jsdom-launcher v8.0.5
Installation
npm install --save @types/karma-jsdom-launcher
Summary
This package contains type definitions for karma-jsdom-launcher (https://github.com/badeball/karma-jsdom-launcher#readme).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/karma-jsdom-launcher.
index.d.ts
// Type definitions for karma-jsdom-launcher 8.0
// Project: https://github.com/badeball/karma-jsdom-launcher#readme
// Definitions by: Piotr Błażejewicz (Peter Blazejewicz) <https://github.com/peterblazejewicz>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 3.2
import 'karma';
import jsdom = require('jsdom');
declare module 'karma' {
interface ConfigOptions {
/**
* Launcher for jsdom configuration
*/
jsdomLauncher?: JsdomLauncherOptions | undefined;
}
interface JsdomLauncherOptions {
/**
* You can pass options directly to jsdom as shown below.
* See jsdom's own documentation for all supported options.
*/
jsdom: jsdom.ConstructorOptions;
}
}
Additional Details
- Last updated: Thu, 08 Jul 2021 16:23:07 GMT
- Dependencies: @types/karma, @types/jsdom
- Global values: none
Credits
These definitions were written by Piotr Błażejewicz (Peter Blazejewicz).