diff --git a/ui/core/view.d.ts b/ui/core/view.d.ts index 215a36b55..f45adc46f 100644 --- a/ui/core/view.d.ts +++ b/ui/core/view.d.ts @@ -370,6 +370,7 @@ declare module "ui/core/view" { _addView(view: View); _removeView(view: View); + _context: android.content.Context; // TODO: Implement logic for stripping these lines out //@private @@ -387,7 +388,6 @@ declare module "ui/core/view" { _eachChildView(callback: (child: View) => boolean); _childrenCount: number; - _context: android.content.Context; _onAttached(context: android.content.Context): void; _onContextChanged(): void; _onDetached(force?: boolean): void; diff --git a/ui/page/page.d.ts b/ui/page/page.d.ts index 5a30f891f..92f273c04 100644 --- a/ui/page/page.d.ts +++ b/ui/page/page.d.ts @@ -109,9 +109,10 @@ declare module "ui/page" { */ on(event: "navigatedTo", callback: (args: NavigatedData) => void); + _addArrayFromBuilder(name: string, value: Array): void; + //@private _getStyleScope(): styleScope.StyleScope; - _addArrayFromBuilder(name: string, value: Array): void; //@endprivate }