mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-12 04:50:18 +00:00
Fix implicit any error in Hello.js typings
This commit is contained in:
Vendored
+1
-1
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user