mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 04:41:36 +08:00
Fix compile errors for methods returning private types.
This commit is contained in:
@ -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;
|
||||||
|
@ -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);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user