import definition = require("ui/placeholder"); import common = require("./placeholder-common"); global.moduleMerge(common, exports); export class Placeholder extends common.Placeholder { private _android: android.view.View; public _createUI() { var args = { eventName: common.Placeholder.creatingViewEvent, object: this, view: undefined, context: this._context }; this.notify(args); this._android = args.view; } get android(): android.view.View { return this._android; } get _nativeView(): android.view.View { return this._android; } }