@types/cypress-cucumber-preprocessor
Advanced tools
Comparing version 3.0.0 to 4.0.0
@@ -1,2 +0,2 @@ | ||
// Type definitions for cypress-cucumber-preprocessor 3.0 | ||
// Type definitions for cypress-cucumber-preprocessor 4.0 | ||
// Project: https://github.com/TheBrainFamily/cypress-cucumber-preprocessor | ||
@@ -16,1 +16,15 @@ // Definitions by: Alec Brunelle <https://github.com/aleccool213> | ||
export function transform(file: any): any; | ||
export interface TableDefinition { | ||
/** Returns the table as a 2-D array. */ | ||
raw(): string[][]; | ||
/** Returns the table as a 2-D array, without the first row. */ | ||
rows(): string[][]; | ||
/** Returns an object where each row corresponds to an entry (first column is the key, second column is the value). */ | ||
rowsHash(): { [firstCol: string]: string; }; | ||
/** Returns an array of objects where each row is converted to an object (column header is the key). */ | ||
hashes(): Array<{ [colName: string]: string; }>; | ||
} |
{ | ||
"name": "@types/cypress-cucumber-preprocessor", | ||
"version": "3.0.0", | ||
"version": "4.0.0", | ||
"description": "TypeScript definitions for cypress-cucumber-preprocessor", | ||
@@ -37,4 +37,4 @@ "license": "MIT", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "e2b3c8ac8813f215a265a4eb2b40cea34a242dafc0c88d1f2136ef1e7b47b1d5", | ||
"typesPublisherContentHash": "b34598538dabcc13ea879be173041eb4b2494ed59c4eda6df0c94bc7d1899ed1", | ||
"typeScriptVersion": "3.2" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Fri, 16 Oct 2020 20:21:10 GMT | ||
* Last updated: Fri, 30 Oct 2020 21:45:54 GMT | ||
* Dependencies: none | ||
@@ -14,0 +14,0 @@ * Global values: none |
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
5446
40