stryker-api
Advanced tools
Comparing version 0.21.1 to 0.21.2
@@ -6,2 +6,10 @@ # Change Log | ||
<a name="0.21.2"></a> | ||
## [0.21.2](https://github.com/stryker-mutator/stryker/compare/stryker-api@0.21.1...stryker-api@0.21.2) (2018-10-03) | ||
**Note:** Version bump only for package stryker-api | ||
<a name="0.21.1"></a> | ||
@@ -8,0 +16,0 @@ ## [0.21.1](https://github.com/stryker-mutator/stryker/compare/stryker-api@0.21.0...stryker-api@0.21.1) (2018-09-14) |
{ | ||
"name": "stryker-api", | ||
"version": "0.21.1", | ||
"version": "0.21.2", | ||
"description": "The api for the extendable JavaScript mutation testing framework Stryker", | ||
@@ -5,0 +5,0 @@ "scripts": { |
import Config from './Config'; | ||
/** | ||
* Represents a ConfigEditor plugin | ||
* | ||
* ConfigEditors can change the content of the stryker runtime configuration | ||
* ConfigEditors are implemented as a chain of ConfigEditors, the result of | ||
* any previous ConfigEditor can be passed thru to the next. Please not that | ||
* editing of the configuration object is done by reference. | ||
* | ||
*/ | ||
interface ConfigEditor { | ||
/** | ||
* Extending classes only need to implement the edit method, this method | ||
* receives a writable config object that can be editted in any way. | ||
* Please be aware that editting is done via object reference. Therefore | ||
* the return type is void. | ||
* | ||
* @param config: The stryker configuration object | ||
*/ | ||
edit(config: Config): void; | ||
} | ||
export default ConfigEditor; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
84637
1486