mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 20:11:24 +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);
|
||||||
|
|
||||||
@ -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.
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user