Auth0: Removing implicit variable types

Attempting to pass travis.ci.
This commit is contained in:
AdvancedREI
2014-05-12 20:25:33 -07:00
parent a52dade23e
commit c0f0775060
2 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ interface Auth0WidgetStatic {
parseHash(hash: string): Auth0DecodedHash;
reset(options: Auth0Options, callback?: Function): Auth0WidgetStatic;
signin(options: Auth0Options, widgetLoadedCallback?: Function, popupCallback?: Function): Auth0WidgetStatic;
signup(options: Auth0Options, callback: (error?: Auth0Error, profile?, id_token?, access_token?, state?) => any): Auth0WidgetStatic;
signup(options: Auth0Options, callback: (error?: Auth0Error, profile?: Auth0UserProfile, id_token?: string, access_token?: string, state?: string) => any): Auth0WidgetStatic;
}
interface Auth0Constructor extends Auth0ClientOptions {