From 7a56197ba7ebcdb97f8d1601ac75f15a61dc10cf Mon Sep 17 00:00:00 2001 From: Hristo Hristov Date: Mon, 27 Feb 2017 17:12:51 +0200 Subject: [PATCH] Observable should be imported first. --- tns-core-modules/application/application-common.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tns-core-modules/application/application-common.ts b/tns-core-modules/application/application-common.ts index 9d3c14ecf..17b60a0d9 100644 --- a/tns-core-modules/application/application-common.ts +++ b/tns-core-modules/application/application-common.ts @@ -1,10 +1,11 @@ require("globals"); +import { Observable, EventData } from "data/observable"; + const events = new Observable(); global.moduleMerge(events, exports); import { NativeScriptError, UnhandledErrorEventData, iOSApplication, AndroidApplication, CssChangedEventData } from "application"; -import { Observable, EventData } from "data/observable"; import { NavigationEntry } from "ui/frame"; import "../bundle-entry-points";