From c3696a6b87a28ebc2cf29fc0ea7ecb8addbcb429 Mon Sep 17 00:00:00 2001 From: Joe Schafer Date: Tue, 1 Mar 2016 22:37:59 -0500 Subject: [PATCH] auth0.lock - fix module name The module name for auth0.lock is auth0-lock as seen in the example: https://github.com/auth0/lock/blob/master/examples/webpack/src/app.js I'm not sure where the Auth0Lock name came from, but typescript fails to resolve the module with the name Auth0Lock. --- auth0.lock/auth0.lock.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth0.lock/auth0.lock.d.ts b/auth0.lock/auth0.lock.d.ts index 3269103ab1..3ba0251da3 100644 --- a/auth0.lock/auth0.lock.d.ts +++ b/auth0.lock/auth0.lock.d.ts @@ -78,6 +78,6 @@ interface Auth0LockStatic { declare var Auth0Lock: Auth0LockStatic; -declare module "Auth0Lock" { +declare module "auth0-lock" { export = Auth0Lock; }