From d81624eaff638984450893a210ddf8f49f6f9a74 Mon Sep 17 00:00:00 2001 From: Kristof Mattei Date: Wed, 8 Jul 2015 13:12:06 +0200 Subject: [PATCH] Fixed the casing of the definition --- auth0/auth0.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/auth0/auth0.d.ts b/auth0/auth0.d.ts index 5d3149ead..cefc35b99 100644 --- a/auth0/auth0.d.ts +++ b/auth0/auth0.d.ts @@ -15,7 +15,7 @@ interface Location { /** This is the interface for the main Auth0 client. */ interface Auth0Static { - + new(options: Auth0ClientOptions): Auth0Static; changePassword(options: any, callback?: Function): void; decodeJwt(jwt: string): any; @@ -40,7 +40,7 @@ interface Auth0ClientOptions { callbackOnLoactionHash?: boolean; domain: string; forceJSONP?: boolean; -} +} /** Represents a normalized UserProfile. */ interface Auth0UserProfile { @@ -128,6 +128,6 @@ interface Auth0DelegationToken { declare var Auth0: Auth0Static; -declare module "Auth0" { +declare module "auth0" { export = Auth0 }