@types/cucumber
Advanced tools
Comparing version 0.0.38 to 0.0.39
// Type definitions for cucumber-js | ||
// Project: https://github.com/cucumber/cucumber-js | ||
// Definitions by: Abraão Alves <https://github.com/abraaoalves>, Jan Molak <https://github.com/jan-molak> | ||
// Definitions by: Abraão Alves <https://github.com/abraaoalves>, Jan Molak <https://github.com/jan-molak>, Isaiah Soung <https://github.com/isoung> | ||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped | ||
@@ -73,5 +73,11 @@ | ||
interface HookOptions{ | ||
timeout?: number; | ||
} | ||
export interface Hooks { | ||
Before(code: HookCode): void; | ||
Before(options: HookOptions, code: HookCode): void; | ||
After(code: HookCode): void; | ||
After(options: HookOptions, code: HookCode): void; | ||
Around(code: AroundCode):void; | ||
@@ -78,0 +84,0 @@ setDefaultTimeout(time:number): void; |
{ | ||
"name": "@types/cucumber", | ||
"version": "0.0.38", | ||
"version": "0.0.39", | ||
"description": "TypeScript definitions for cucumber-js", | ||
@@ -14,2 +14,6 @@ "license": "MIT", | ||
"url": "https://github.com/jan-molak" | ||
}, | ||
{ | ||
"name": "Isaiah Soung", | ||
"url": "https://github.com/isoung" | ||
} | ||
@@ -25,4 +29,4 @@ ], | ||
"peerDependencies": {}, | ||
"typesPublisherContentHash": "e926a274b05e55fe4cd54cdb83836321c440a34239b968e0fa762258a3b25d14", | ||
"typesPublisherContentHash": "3ae75aa417e8e8cc0dc3558424bed58e5155d6b90a5ca4af8bd8b83aa755eb35", | ||
"typeScriptVersion": "2.0" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
Additional Details | ||
* Last updated: Wed, 08 Mar 2017 04:58:10 GMT | ||
* Last updated: Wed, 22 Mar 2017 00:12:27 GMT | ||
* Dependencies: none | ||
@@ -17,2 +17,2 @@ * Global values: none | ||
# Credits | ||
These definitions were written by Abraão Alves <https://github.com/abraaoalves>, Jan Molak <https://github.com/jan-molak>. | ||
These definitions were written by Abraão Alves <https://github.com/abraaoalves>, Jan Molak <https://github.com/jan-molak>, Isaiah Soung <https://github.com/isoung>. |
8104
198