From 9be5d4301af5eeed102121dc16d6fb26c71b233e Mon Sep 17 00:00:00 2001 From: Rossen Hristov Date: Mon, 19 Dec 2016 13:13:59 +0200 Subject: [PATCH] Add several missing types to view.d.ts --- tns-core-modules/ui/core/view.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tns-core-modules/ui/core/view.d.ts b/tns-core-modules/ui/core/view.d.ts index 60a106bf6..e64b642cd 100644 --- a/tns-core-modules/ui/core/view.d.ts +++ b/tns-core-modules/ui/core/view.d.ts @@ -27,7 +27,7 @@ declare module "ui/core/view" { BindingOptions, Observable, EventData } from "ui/core/view-base"; import { Background } from "ui/styling/background"; - import { Font } from "ui/styling/font"; + import { Font, FontWeight, FontStyle } from "ui/styling/font"; import { Color } from "color"; export { @@ -735,7 +735,7 @@ declare module "ui/core/view" { export const borderBottomLeftRadiusProperty: CssProperty; export const zIndexProperty: CssProperty; - export const visibilityProperty: CssProperty; + export const visibilityProperty: CssProperty; export const opacityProperty: CssProperty; export const minWidthProperty: CssProperty; @@ -759,8 +759,8 @@ declare module "ui/core/view" { export const fontSizeProperty: InheritedCssProperty; export const fontFamilyProperty: InheritedCssProperty; - export const fontStyleProperty: InheritedCssProperty; - export const fontWeightProperty: InheritedCssProperty; + export const fontStyleProperty: InheritedCssProperty; + export const fontWeightProperty: InheritedCssProperty; export const backgroundInternalProperty: CssProperty; export const fontInternalProperty: InheritedCssProperty;