Fix for eyes module API

This commit is contained in:
bryn austin bellomy 2015-06-21 06:23:41 -05:00
parent 84dfeeac37
commit 623fca4e98
2 changed files with 7 additions and 2 deletions

View File

@ -26,4 +26,9 @@ var options = {
hideFunctions: true,
stream: process.stdout,
maxLength: 120
}
}
var result = eyes.inspector(testObj)

2
eyes/eyes.d.ts vendored
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