UNPKG

@nativescript/core

Version:

A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.

14 lines (13 loc) 597 B
import { CssProperty } from '../core/properties'; import { View } from '../core/view'; import { Property } from '../core/properties'; import { Style } from '../styling/style'; import { Color } from '../../color'; import { HtmlView as HtmlViewDefinition } from '.'; export declare class HtmlViewBase extends View implements HtmlViewDefinition { html: string; selectable: boolean; } export declare const htmlProperty: Property<HtmlViewBase, string>; export declare const selectableProperty: Property<HtmlViewBase, boolean>; export declare const linkColorProperty: CssProperty<Style, Color>;