Fix compile errors for methods returning private types.

This commit is contained in:
Hristo Deshev
2015-06-11 15:33:54 +03:00
parent a9ee30c3d6
commit b34a281d32
2 changed files with 4 additions and 4 deletions

View File

@ -151,7 +151,7 @@ export class Frame extends frameCommon.Frame {
} }
} }
class UINavigationControllerImpl extends UINavigationController implements UINavigationControllerDelegate { export class UINavigationControllerImpl extends UINavigationController implements UINavigationControllerDelegate {
public static ObjCProtocols = [UINavigationControllerDelegate]; public static ObjCProtocols = [UINavigationControllerDelegate];
static new(): UINavigationControllerImpl { static new(): UINavigationControllerImpl {
@ -240,7 +240,7 @@ class UINavigationControllerImpl extends UINavigationController implements UINav
} }
/* tslint:disable */ /* tslint:disable */
class iOSFrame implements definition.iOSFrame { export class iOSFrame implements definition.iOSFrame {
/* tslint:enable */ /* tslint:enable */
private _controller: UINavigationControllerImpl; private _controller: UINavigationControllerImpl;
private _showNavigationBar: boolean; private _showNavigationBar: boolean;

View File

@ -158,7 +158,7 @@ export class SegmentedBar extends common.SegmentedBar {
} }
} }
class OurTabHost extends android.widget.TabHost { export class OurTabHost extends android.widget.TabHost {
constructor(context: any, attrs: any) { constructor(context: any, attrs: any) {
super(context, attrs); super(context, attrs);
@ -168,4 +168,4 @@ class OurTabHost extends android.widget.TabHost {
protected onAttachedToWindow(): void { protected onAttachedToWindow(): void {
// overriden to remove the code that will steal the focus from edit fields. // overriden to remove the code that will steal the focus from edit fields.
} }
} }