Skip to content

Commit 6ad062b

Browse files
author
Vladimir Enchev
committed
_addArrayFromBuilder and _context exposed in definitions
1 parent 54f80f5 commit 6ad062b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

ui/core/view.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,6 +370,7 @@ declare module "ui/core/view" {
370370

371371
_addView(view: View);
372372
_removeView(view: View);
373+
_context: android.content.Context;
373374

374375
// TODO: Implement logic for stripping these lines out
375376
//@private
@@ -387,7 +388,6 @@ declare module "ui/core/view" {
387388
_eachChildView(callback: (child: View) => boolean);
388389
_childrenCount: number;
389390

390-
_context: android.content.Context;
391391
_onAttached(context: android.content.Context): void;
392392
_onContextChanged(): void;
393393
_onDetached(force?: boolean): void;

ui/page/page.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,10 @@ declare module "ui/page" {
109109
*/
110110
on(event: "navigatedTo", callback: (args: NavigatedData) => void);
111111

112+
_addArrayFromBuilder(name: string, value: Array<any>): void;
113+
112114
//@private
113115
_getStyleScope(): styleScope.StyleScope;
114-
_addArrayFromBuilder(name: string, value: Array<any>): void;
115116
//@endprivate
116117
}
117118

0 commit comments

Comments
 (0)