From f34068d59b0202b1c47d5733731dd518c7aec803 Mon Sep 17 00:00:00 2001 From: Martin Bektchiev Date: Thu, 21 Feb 2019 09:43:38 +0200 Subject: [PATCH] fix(angular): Re-add references to `tns-core-modules.d.ts` (#6949) They were removed in #6927 because we thought they were unnecessary. --- tns-core-modules/application/application.d.ts | 2 ++ tns-core-modules/ui/core/view/view.d.ts | 2 ++ tns-core-modules/ui/page/page.d.ts | 2 ++ 3 files changed, 6 insertions(+) diff --git a/tns-core-modules/application/application.d.ts b/tns-core-modules/application/application.d.ts index 16d8f2409..16f45599e 100644 --- a/tns-core-modules/application/application.d.ts +++ b/tns-core-modules/application/application.d.ts @@ -2,7 +2,9 @@ * Contains the application abstraction with all related methods. * @module "application" */ /** */ + /// +/// import { NavigationEntry, View, Observable, EventData } from "../ui/frame"; diff --git a/tns-core-modules/ui/core/view/view.d.ts b/tns-core-modules/ui/core/view/view.d.ts index 792a2f174..04a310522 100644 --- a/tns-core-modules/ui/core/view/view.d.ts +++ b/tns-core-modules/ui/core/view/view.d.ts @@ -2,6 +2,8 @@ * @module "ui/core/view" */ /** */ +/// + import { ViewBase, Property, InheritedProperty, EventData, Color } from "../view-base"; import { Animation, AnimationDefinition, AnimationPromise } from "../../animation"; import { HorizontalAlignment, VerticalAlignment, Visibility, Length, PercentLength } from "../../styling/style-properties"; diff --git a/tns-core-modules/ui/page/page.d.ts b/tns-core-modules/ui/page/page.d.ts index 109244584..e8f973e59 100644 --- a/tns-core-modules/ui/page/page.d.ts +++ b/tns-core-modules/ui/page/page.d.ts @@ -3,6 +3,8 @@ * @module "ui/page" */ /** */ +/// + import { ShownModallyData } from "../core/view"; import { ContentView, EventData, Property, Color, CssProperty, Style } from "../content-view"; import { Frame } from "../frame";