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

View File

@@ -10,7 +10,7 @@ declare module "angular-locker" {
export = _;
}
declare module angular.locker {
declare namespace angular.locker {
interface ILockerServicePutFunction {
(current: any): any
}
@@ -69,7 +69,7 @@ declare module angular.locker {
* Add a new item to storage (even if it already exists)
*
* @param {Mixed} key The key to add
* @param {Mixed} value The value to add
* @param {Mixed} value The value to add
*/
put(key: string, value: any): ILockerService | boolean;
/**
@@ -77,7 +77,7 @@ declare module angular.locker {
*
* @param {Mixed} key The key to add
* @param {Mixed} putFunction The default to pass to function if doesn't already exist
* @param {Mixed} value The value to add
* @param {Mixed} value The value to add
*/
put(key: string, putFunction: ILockerServicePutFunction, value: any): ILockerService | boolean;
/**
@@ -167,4 +167,4 @@ declare module angular.locker {
*/
defaults(lockerSettings: ILockerSettings): void;
}
}
}