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.
This commit is contained in:
Joe Schafer 2016-03-01 22:37:59 -05:00
parent 55c750ace8
commit c3696a6b87

View File

@ -78,6 +78,6 @@ interface Auth0LockStatic {
declare var Auth0Lock: Auth0LockStatic;
declare module "Auth0Lock" {
declare module "auth0-lock" {
export = Auth0Lock;
}