UNPKG

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