@types/cypress-cucumber-preprocessor
Advanced tools
Comparing version 1.14.1 to 3.0.0
@@ -1,2 +0,2 @@ | ||
// Type definitions for cypress-cucumber-preprocessor 1.14 | ||
// Type definitions for cypress-cucumber-preprocessor 3.0 | ||
// Project: https://github.com/TheBrainFamily/cypress-cucumber-preprocessor | ||
@@ -6,2 +6,3 @@ // Definitions by: Alec Brunelle <https://github.com/aleccool213> | ||
// Jens Peters <https://github.com/jp7677> | ||
// Aaron Aichlmayr <https://github.com/waterfoul> | ||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
@@ -8,0 +9,0 @@ // TypeScript Version: 2.2 |
{ | ||
"name": "@types/cypress-cucumber-preprocessor", | ||
"version": "1.14.1", | ||
"version": "3.0.0", | ||
"description": "TypeScript definitions for cypress-cucumber-preprocessor", | ||
@@ -21,2 +21,7 @@ "license": "MIT", | ||
"githubUsername": "jp7677" | ||
}, | ||
{ | ||
"name": "Aaron Aichlmayr", | ||
"url": "https://github.com/waterfoul", | ||
"githubUsername": "waterfoul" | ||
} | ||
@@ -33,4 +38,4 @@ ], | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "f40267f2963b879cded1e5f8a7b991940af89d7b267d3beab8a3f0d03ff196ba", | ||
"typeScriptVersion": "2.8" | ||
"typesPublisherContentHash": "e2b3c8ac8813f215a265a4eb2b40cea34a242dafc0c88d1f2136ef1e7b47b1d5", | ||
"typeScriptVersion": "3.2" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Wed, 18 Mar 2020 21:14:29 GMT | ||
* Last updated: Fri, 16 Oct 2020 20:21:10 GMT | ||
* Dependencies: none | ||
@@ -17,2 +17,2 @@ * Global values: none | ||
# Credits | ||
These definitions were written by [Alec Brunelle](https://github.com/aleccool213), [Falcon Taylor-Carter](https://github.com/falconertc), and [Jens Peters](https://github.com/jp7677). | ||
These definitions were written by [Alec Brunelle](https://github.com/aleccool213), [Falcon Taylor-Carter](https://github.com/falconertc), [Jens Peters](https://github.com/jp7677), and [Aaron Aichlmayr](https://github.com/waterfoul). |
@@ -10,11 +10,4 @@ export interface Transform { | ||
export function given(expression: RegExp | string, implementation: (...args: any[]) => void): void; | ||
export function when(expression: RegExp | string, implementation: (...args: any[]) => void): void; | ||
export function then(expression: RegExp | string, implementation: (...args: any[]) => void): void; | ||
export function and(expression: RegExp | string, implementation: (...args: any[]) => void): void; | ||
export function but(expression: RegExp | string, implementation: (...args: any[]) => void): void; | ||
export function defineStep(expression: RegExp | string, implementation: (...args: any[]) => void): void; | ||
export function defineParameterType(parameterType: Transform): void; | ||
// Aliased versions of the above funcs. | ||
export function Given(expression: RegExp | string, implementation: (...args: any[]) => void): void; | ||
@@ -21,0 +14,0 @@ export function When(expression: RegExp | string, implementation: (...args: any[]) => void): void; |
Sorry, the diff of this file is not supported yet
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
4912
30