@types/cypress-cucumber-preprocessor
Advanced tools
Comparing version 4.0.1 to 4.0.2
@@ -25,6 +25,6 @@ // Type definitions for cypress-cucumber-preprocessor 4.0 | ||
/** Returns an object where each row corresponds to an entry (first column is the key, second column is the value). */ | ||
rowsHash(): { [firstCol: string]: string; }; | ||
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; }>; | ||
hashes(): Array<{ [colName: string]: string }>; | ||
} |
{ | ||
"name": "@types/cypress-cucumber-preprocessor", | ||
"version": "4.0.1", | ||
"version": "4.0.2", | ||
"description": "TypeScript definitions for cypress-cucumber-preprocessor", | ||
@@ -38,4 +38,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cypress-cucumber-preprocessor", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "2133671255c0e9932965ac0f647cf69504f8a2e8bfa91d25faca8f4b682171a4", | ||
"typeScriptVersion": "3.6" | ||
"typesPublisherContentHash": "875e5ca17656ca7eac04ae86a1c14f01a0957c67738427fd4fb4671a6c4afc24", | ||
"typeScriptVersion": "4.3" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Tue, 06 Jul 2021 20:32:35 GMT | ||
* Last updated: Mon, 04 Sep 2023 15:41:36 GMT | ||
* Dependencies: none | ||
@@ -14,0 +14,0 @@ * Global values: none |
@@ -17,3 +17,9 @@ export interface Transform { | ||
export function But(expression: RegExp | string, implementation: (...args: any[]) => void): void; | ||
export function Before(optionsOrImplementation: object | ((...args: any[]) => void), implementation?: (...args: any[]) => void): void; | ||
export function After(optionsOrImplementation: object | ((...args: any[]) => void), implementation?: (...args: any[]) => void): void; | ||
export function Before( | ||
optionsOrImplementation: object | ((...args: any[]) => void), | ||
implementation?: (...args: any[]) => void, | ||
): void; | ||
export function After( | ||
optionsOrImplementation: object | ((...args: any[]) => void), | ||
implementation?: (...args: any[]) => void, | ||
): void; |
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
5632
46