fix placeholder imports (#3429)

This commit is contained in:
Hristo Hristov
2017-01-06 14:57:21 +02:00
committed by GitHub
parent b538c1d12a
commit 899ce1adc8
5 changed files with 6 additions and 5 deletions

View File

@@ -1 +0,0 @@


View File

@@ -1,6 +1,7 @@
import { Placeholder as PlaceholderDefinition, CreateViewEventData } from "ui/placeholder"
import { View } from "ui/core/view"
export class Placeholder extends PlaceholderDefinition {
export class Placeholder extends View implements PlaceholderDefinition {
public static creatingViewEvent = "creatingView";
private _android: android.view.View;

View File

@@ -1,6 +1,7 @@
import { Placeholder as PlaceholderDefinition, CreateViewEventData } from "ui/placeholder"
import { View } from "ui/core/view"
export class Placeholder extends PlaceholderDefinition {
export class Placeholder extends View implements PlaceholderDefinition {
public static creatingViewEvent = "creatingView";
private _ios: UIView;