Files
Hristo Deshev 629eb6e683 Use relative imports in tns-core-modules.
Use tns-core-modules/* imports in outside code (apps, tests, etc)
2017-03-13 14:37:59 +02:00

13 lines
455 B
TypeScript

import { HtmlView as HtmlViewDefinition } from ".";
import { View, Property } from "../core/view";
export * from "../core/view";
export class HtmlViewBase extends View implements HtmlViewDefinition {
public html: string;
}
// TODO: Can we use Label.ios optimization for affectsLayout???
export const htmlProperty = new Property<HtmlViewBase, string>({ name: "html", defaultValue: "", affectsLayout: true });
htmlProperty.register(HtmlViewBase);