1 | import { CssProperty } from '../core/properties';
|
2 | import { View } from '../core/view';
|
3 | import { Property } from '../core/properties';
|
4 | import { Style } from '../styling/style';
|
5 | import { Color } from '../../color';
|
6 | import { HtmlView as HtmlViewDefinition } from '.';
|
7 | export declare class HtmlViewBase extends View implements HtmlViewDefinition {
|
8 | html: string;
|
9 | selectable: boolean;
|
10 | }
|
11 | export declare const htmlProperty: Property<HtmlViewBase, string>;
|
12 | export declare const selectableProperty: Property<HtmlViewBase, boolean>;
|
13 | export declare const linkColorProperty: CssProperty<Style, Color>;
|