Merge branch 'master' into myankov/merge-release-master

This commit is contained in:
Manol Donev
2019-02-21 15:58:13 +02:00
committed by GitHub
6 changed files with 20 additions and 14 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";