@types/cypress-cucumber-preprocessor
Advanced tools
Comparing version 1.14.0 to 1.14.1
// Type definitions for cypress-cucumber-preprocessor 1.14 | ||
// Project: https://github.com/TheBrainFamily/cypress-cucumber-preprocessor | ||
// Definitions by: Alec Brunelle <https://github.com/aleccool213>, Falcon Taylor-Carter <https://github.com/falconertc> | ||
// Definitions by: Alec Brunelle <https://github.com/aleccool213> | ||
// Falcon Taylor-Carter <https://github.com/falconertc> | ||
// Jens Peters <https://github.com/jp7677> | ||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
@@ -5,0 +7,0 @@ // TypeScript Version: 2.2 |
{ | ||
"name": "@types/cypress-cucumber-preprocessor", | ||
"version": "1.14.0", | ||
"version": "1.14.1", | ||
"description": "TypeScript definitions for cypress-cucumber-preprocessor", | ||
@@ -16,6 +16,11 @@ "license": "MIT", | ||
"githubUsername": "falconertc" | ||
}, | ||
{ | ||
"name": "Jens Peters", | ||
"url": "https://github.com/jp7677", | ||
"githubUsername": "jp7677" | ||
} | ||
], | ||
"main": "", | ||
"types": "index", | ||
"types": "index.d.ts", | ||
"repository": { | ||
@@ -28,4 +33,4 @@ "type": "git", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "3c440cc655e0f332a4e5581de1ca7d526e72f019d80dff99fa62bab0fd070095", | ||
"typeScriptVersion": "2.2" | ||
"typesPublisherContentHash": "f40267f2963b879cded1e5f8a7b991940af89d7b267d3beab8a3f0d03ff196ba", | ||
"typeScriptVersion": "2.8" | ||
} |
@@ -8,6 +8,6 @@ # Installation | ||
# Details | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cypress-cucumber-preprocessor | ||
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cypress-cucumber-preprocessor. | ||
Additional Details | ||
* Last updated: Fri, 25 Oct 2019 22:55:33 GMT | ||
### Additional Details | ||
* Last updated: Wed, 18 Mar 2020 21:14:29 GMT | ||
* Dependencies: none | ||
@@ -17,2 +17,2 @@ * Global values: none | ||
# Credits | ||
These definitions were written by Alec Brunelle <https://github.com/aleccool213>, and Falcon Taylor-Carter <https://github.com/falconertc>. | ||
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). |
@@ -0,1 +1,10 @@ | ||
export interface Transform { | ||
regexp: RegExp; | ||
transformer(...arg: string[]): any; | ||
useForSnippets?: boolean; | ||
preferForRegexpMatch?: boolean; | ||
name?: string; | ||
typeName?: string; // deprecated | ||
} | ||
export function given(expression: RegExp | string, implementation: (...args: any[]) => void): void; | ||
@@ -7,3 +16,3 @@ export function when(expression: RegExp | string, implementation: (...args: any[]) => void): void; | ||
export function defineStep(expression: RegExp | string, implementation: (...args: any[]) => void): void; | ||
export function defineParameterType(): void; | ||
export function defineParameterType(parameterType: Transform): void; | ||
@@ -10,0 +19,0 @@ // Aliased versions of the above funcs. |
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
5223
35