mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
method definitions enabled for override (removed from @private)
This commit is contained in:
3
ui/core/bindable.d.ts
vendored
3
ui/core/bindable.d.ts
vendored
@@ -65,9 +65,10 @@
|
||||
*/
|
||||
unbind(property: string);
|
||||
|
||||
_onBindingContextChanged(oldValue: any, newValue: any);
|
||||
|
||||
//@private
|
||||
_updateTwoWayBinding(propertyName: string, value: any);
|
||||
_onBindingContextChanged(oldValue: any, newValue: any);
|
||||
//@endprivate
|
||||
}
|
||||
}
|
||||
|
||||
1
ui/core/dependency-observable.d.ts
vendored
1
ui/core/dependency-observable.d.ts
vendored
@@ -181,7 +181,6 @@ declare module "ui/core/dependency-observable" {
|
||||
* This routine allows for various value modifiers per Property, which is used for inheritance, data-binding and styling purposes.
|
||||
*/
|
||||
export class DependencyObservable extends observable.Observable {
|
||||
//@private
|
||||
// TODO: Do we want to expose the get/setValue methods as public?
|
||||
/**
|
||||
* Gets a value for the property.
|
||||
|
||||
5
ui/core/view.d.ts
vendored
5
ui/core/view.d.ts
vendored
@@ -368,6 +368,9 @@ declare module "ui/core/view" {
|
||||
onUnloaded(): void;
|
||||
isLoaded: boolean;
|
||||
|
||||
_addView(view: View);
|
||||
_removeView(view: View);
|
||||
|
||||
// TODO: Implement logic for stripping these lines out
|
||||
//@private
|
||||
_domId: number;
|
||||
@@ -375,8 +378,6 @@ declare module "ui/core/view" {
|
||||
|
||||
_isAddedToNativeVisualTree: boolean;
|
||||
|
||||
_addView(view: View);
|
||||
_removeView(view: View);
|
||||
/**
|
||||
* Performs the core logic of adding a child view to the native visual tree. Returns true if the view's native representation has been successfully added, false otherwise.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user