Fix implicit any error in Hello.js typings

This commit is contained in:
Boris Yankov
2014-05-17 03:56:47 +03:00
parent de02aeb132
commit bb59fade92
+1 -1
View File
@@ -21,7 +21,7 @@ interface HelloJSLogoutOptions {
interface HelloJSEvent {
on(event: string, callback: (auth: HelloJSEventArgument) => void): HelloJSStatic;
off(event: string, callback: (auth: HelloJSEventArgument) => void): HelloJSStatic;
findEvents(event, callback): void;
findEvents(event: string, callback: (name: string, index: number) => void): void;
emit(event: string, data: any): HelloJSStatic;
emitAfter(): HelloJSStatic;
success(callback: (json?: any) => void): HelloJSStatic;