8.0.5 • Published 2 years ago

@types/karma-jsdom-launcher v8.0.5

Weekly downloads
613
License
MIT
Repository
github
Last release
2 years ago

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

Credits

These definitions were written by Piotr Błażejewicz (Peter Blazejewicz).

8.0.5

2 years ago

8.0.4

2 years ago

8.0.3

2 years ago

8.0.2

3 years ago

8.0.1

4 years ago

8.0.0

5 years ago