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
+5 -5
View File
@@ -5,10 +5,10 @@
/// <reference path="../angularjs/angular.d.ts" />
declare module ngCommand {
declare namespace ngCommand {
var ModuleName: string;
/**
* Command proxy object.
*/
@@ -26,7 +26,7 @@ declare module ngCommand {
*/
execute: () => angular.IPromise<any>;
}
class Command implements ICommand {
static id: string;
@@ -35,7 +35,7 @@ declare module ngCommand {
constructor($scope: angular.IScope, execute: () => angular.IPromise<any>, canExecute?: () => boolean);
execute(): angular.IPromise<any>;
}
/**
* Command factory which creates instances of @see ICommand.
*/