@nativescript/core
Version:
A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.
13 lines (12 loc) • 531 B
TypeScript
import { View } from '../core/view';
import { Property } from '../core/properties';
import { Color } from '../../color';
import { HtmlView as HtmlViewDefinition } from '.';
export declare class HtmlViewBase extends View implements HtmlViewDefinition {
html: string;
selectable: boolean;
linkColor: Color;
}
export declare const htmlProperty: Property<HtmlViewBase, string>;
export declare const selectableProperty: Property<HtmlViewBase, boolean>;
export declare const linkColorProperty: Property<HtmlViewBase, Color>;