UNPKG

1.74 kBMarkdownView Raw
1# Installation
2> `npm install --save @types/karma-jasmine-html-reporter`
3
4# Summary
5This package contains type definitions for karma-jasmine-html-reporter (https://github.com/dfederm/karma-jasmine-html-reporter#readme).
6
7# Details
8Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/karma-jasmine-html-reporter.
9## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/karma-jasmine-html-reporter/index.d.ts)
10````ts
11// Type definitions for karma-jasmine-html-reporter 1.7
12// Project: https://github.com/dfederm/karma-jasmine-html-reporter#readme
13// Definitions by: Piotr Błażejewicz <https://github.com/peterblazejewicz>
14// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
15
16import 'karma';
17
18declare module 'karma' {
19 interface ConfigOptions {
20 /**
21 * In combination with multiple reporters you may want to disable failed messages
22 * because it's already handled by another reporter
23 * See {@link https://github.com/dfederm/karma-jasmine-html-reporter#with-options}
24 */
25 jasmineHtmlReporter?: JasmineHtmlReporterOptions | undefined;
26 }
27 interface JasmineHtmlReporterOptions {
28 /**
29 * Suppress all messages (overrides other suppress settings)
30 */
31 suppressAll?: boolean | undefined;
32 /** Suppress failed messages */
33 suppressFailed?: boolean | undefined;
34 }
35}
36
37````
38
39### Additional Details
40 * Last updated: Fri, 29 Oct 2021 12:01:21 GMT
41 * Dependencies: [@types/karma](https://npmjs.com/package/@types/karma)
42 * Global values: none
43
44# Credits
45These definitions were written by [Piotr Błażejewicz](https://github.com/peterblazejewicz).
46
\No newline at end of file