replace internal module to namespace

This commit is contained in:
vvakame
2016-03-17 02:18:10 +09:00
parent 2f47c75835
commit 14fe4313f4
1139 changed files with 179639 additions and 179639 deletions
+4 -4
View File
@@ -5,7 +5,7 @@
/// <reference path="../angularjs/angular.d.ts" />
declare module auth0.angular {
declare namespace auth0.angular {
interface IAuth0ClientOptions {
/**
@@ -65,7 +65,7 @@ declare module auth0.angular {
(error: any): void;
}
interface IAuth0Service {
interface IAuth0Service {
/**
* Hooks to internal Angular events so that a user will be redirected to the login page if trying to visit a restricted resource
*/
@@ -156,7 +156,7 @@ declare module auth0.angular {
* Configures the auth service
* @param options Client options passed into Auth0
*/
init(options: IAuth0ClientOptions): void;
init(options: IAuth0ClientOptions): void;
/**
* @param event Name of the event to handle.
@@ -164,4 +164,4 @@ declare module auth0.angular {
*/
on(event: string, handler: (...args: any[]) => any): void;
}
}
}