fix(angular): Re-add references to tns-core-modules.d.ts (#6949)

They were removed in #6927 because we thought they were
unnecessary.
This commit is contained in:
Martin Bektchiev
2019-02-21 09:43:38 +02:00
committed by Dimitar Topuzov
parent 5449cfa238
commit f34068d59b
3 changed files with 6 additions and 0 deletions

View File

@ -2,7 +2,9 @@
* Contains the application abstraction with all related methods.
* @module "application"
*/ /** */
/// <reference path="../nativescript-error.d.ts" />
/// <reference path="../tns-core-modules.d.ts" />
import { NavigationEntry, View, Observable, EventData } from "../ui/frame";

View File

@ -2,6 +2,8 @@
* @module "ui/core/view"
*/ /** */
/// <reference path="../../../tns-core-modules.d.ts" />
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";

View File

@ -3,6 +3,8 @@
* @module "ui/page"
*/ /** */
/// <reference path="../../tns-core-modules.d.ts" />
import { ShownModallyData } from "../core/view";
import { ContentView, EventData, Property, Color, CssProperty, Style } from "../content-view";
import { Frame } from "../frame";