_addArrayFromBuilder and _context exposed in definitions

This commit is contained in:
Vladimir Enchev
2015-03-30 11:56:58 +03:00
parent 54f80f54fc
commit 6ad062bbdf
2 changed files with 3 additions and 2 deletions

2
ui/core/view.d.ts vendored
View File

@ -370,6 +370,7 @@ declare module "ui/core/view" {
_addView(view: View); _addView(view: View);
_removeView(view: View); _removeView(view: View);
_context: android.content.Context;
// TODO: Implement logic for stripping these lines out // TODO: Implement logic for stripping these lines out
//@private //@private
@ -387,7 +388,6 @@ declare module "ui/core/view" {
_eachChildView(callback: (child: View) => boolean); _eachChildView(callback: (child: View) => boolean);
_childrenCount: number; _childrenCount: number;
_context: android.content.Context;
_onAttached(context: android.content.Context): void; _onAttached(context: android.content.Context): void;
_onContextChanged(): void; _onContextChanged(): void;
_onDetached(force?: boolean): void; _onDetached(force?: boolean): void;

3
ui/page/page.d.ts vendored
View File

@ -109,9 +109,10 @@ declare module "ui/page" {
*/ */
on(event: "navigatedTo", callback: (args: NavigatedData) => void); on(event: "navigatedTo", callback: (args: NavigatedData) => void);
_addArrayFromBuilder(name: string, value: Array<any>): void;
//@private //@private
_getStyleScope(): styleScope.StyleScope; _getStyleScope(): styleScope.StyleScope;
_addArrayFromBuilder(name: string, value: Array<any>): void;
//@endprivate //@endprivate
} }