From d5bd9be1f261817a85a6a87b63df0948549b4c68 Mon Sep 17 00:00:00 2001 From: Hristo Hristov Date: Tue, 7 Mar 2017 10:01:06 +0200 Subject: [PATCH] add missing export in application-common --- tns-core-modules/application/application-common.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tns-core-modules/application/application-common.ts b/tns-core-modules/application/application-common.ts index 8110203d3..0086cb8d0 100644 --- a/tns-core-modules/application/application-common.ts +++ b/tns-core-modules/application/application-common.ts @@ -7,6 +7,8 @@ const events = new Observable(); // First merge all functions from events into application-common so that later appModule.on will be defined. global.moduleMerge(events, exports); +export { Observable }; + import { NativeScriptError, UnhandledErrorEventData, iOSApplication, AndroidApplication, CssChangedEventData } from "application"; import { NavigationEntry } from "ui/frame";