mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
module merge usage fixed
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
// merge the exports of the application_common file with the exports of this file
|
||||
declare var exports;
|
||||
require("utils/module_merge").merge(appModule, exports);
|
||||
require("utils/module-merge").merge(appModule, exports);
|
||||
|
||||
var callbacks = android.app.Application.ActivityLifecycleCallbacks;
|
||||
|
||||
|
||||
@@ -24,7 +24,7 @@ import appModule = require("application/application_common");
|
||||
|
||||
// merge the exports of the application_common file with the exports of this file
|
||||
declare var exports;
|
||||
require("utils/module_merge").merge(appModule, exports);
|
||||
require("utils/module-merge").merge(appModule, exports);
|
||||
|
||||
// TODO: Declarations
|
||||
export var init = function (nativeApp: any) {
|
||||
|
||||
@@ -4,7 +4,7 @@ import http = require("http/http-request");
|
||||
|
||||
// merge request
|
||||
declare var exports;
|
||||
require("utils/module_merge").merge(http, exports);
|
||||
require("utils/module-merge").merge(http, exports);
|
||||
|
||||
/**
|
||||
* Gets string from url.
|
||||
|
||||
Reference in New Issue
Block a user