module merge usage fixed

This commit is contained in:
Vladimir Enchev
2014-05-15 10:28:21 +03:00
parent 81dfaf8e44
commit 5225d188fb
3 changed files with 3 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
// merge the exports of the application_common file with the exports of this file // merge the exports of the application_common file with the exports of this file
declare var exports; declare var exports;
require("utils/module_merge").merge(appModule, exports); require("utils/module-merge").merge(appModule, exports);
var callbacks = android.app.Application.ActivityLifecycleCallbacks; var callbacks = android.app.Application.ActivityLifecycleCallbacks;

View File

@@ -24,7 +24,7 @@ import appModule = require("application/application_common");
// merge the exports of the application_common file with the exports of this file // merge the exports of the application_common file with the exports of this file
declare var exports; declare var exports;
require("utils/module_merge").merge(appModule, exports); require("utils/module-merge").merge(appModule, exports);
// TODO: Declarations // TODO: Declarations
export var init = function (nativeApp: any) { export var init = function (nativeApp: any) {

View File

@@ -4,7 +4,7 @@ import http = require("http/http-request");
// merge request // merge request
declare var exports; declare var exports;
require("utils/module_merge").merge(http, exports); require("utils/module-merge").merge(http, exports);
/** /**
* Gets string from url. * Gets string from url.