Comparing version
@@ -17,2 +17,3 @@ import Task, { RunResult } from './Task'; | ||
get(property: string): any; | ||
has(property: string): boolean; | ||
set(property: string, value: any): void; | ||
@@ -19,0 +20,0 @@ registerTask<T extends Task>(task: { |
@@ -27,2 +27,5 @@ "use strict"; | ||
} | ||
has(property) { | ||
return this.hasOwnProperty(property); | ||
} | ||
set(property, value) { | ||
@@ -29,0 +32,0 @@ this[property] = value; |
@@ -14,3 +14,4 @@ import Agent from './Agent'; | ||
get(property: string): any; | ||
has(property: string): boolean; | ||
set(property: string, value: any): void; | ||
} |
@@ -26,2 +26,5 @@ "use strict"; | ||
} | ||
has(property) { | ||
return this.hasOwnProperty(property); | ||
} | ||
set(property, value) { | ||
@@ -28,0 +31,0 @@ this[property] = value; |
{ | ||
"name": "keisatsu", | ||
"version": "0.0.12", | ||
"version": "0.0.13", | ||
"description": "Task runner based on yakuza", | ||
@@ -5,0 +5,0 @@ "engines": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
23461
1.61%216
3.85%