Merge pull request #4685 from brynbellomy/eyes-module-fix

Fix for eyes module API
This commit is contained in:
Horiuchi_H
2015-06-22 13:56:17 +09:00
2 changed files with 7 additions and 2 deletions
+6 -1
View File
@@ -26,4 +26,9 @@ var options = {
hideFunctions: true,
stream: process.stdout,
maxLength: 120
}
}
var result = eyes.inspector(testObj)
+1 -1
View File
@@ -13,7 +13,7 @@ declare module "eyes"
export function inspect(thing:any, label?:string): void;
export interface InspectorFunction {
(thing:any, label?:string): void;
(thing:any, label?:string): string;
}
export interface EyesOptions