mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 20:11:24 +08:00
_addArrayFromBuilder and _context exposed in definitions
This commit is contained in:
2
ui/core/view.d.ts
vendored
2
ui/core/view.d.ts
vendored
@ -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;
|
||||
|
3
ui/page/page.d.ts
vendored
3
ui/page/page.d.ts
vendored
@ -109,9 +109,10 @@ declare module "ui/page" {
|
||||
*/
|
||||
on(event: "navigatedTo", callback: (args: NavigatedData) => void);
|
||||
|
||||
_addArrayFromBuilder(name: string, value: Array<any>): void;
|
||||
|
||||
//@private
|
||||
_getStyleScope(): styleScope.StyleScope;
|
||||
_addArrayFromBuilder(name: string, value: Array<any>): void;
|
||||
//@endprivate
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user