mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
Add module names for the typedoc, make it work
Mark members with @private for typedoc.
This commit is contained in:
10
tns-core-modules/data/observable/observable.d.ts
vendored
10
tns-core-modules/data/observable/observable.d.ts
vendored
@@ -1,6 +1,9 @@
|
||||
/**
|
||||
* @module "data/observable"
|
||||
*
|
||||
* Contains the Observable class, which represents an observable object, or "data" in the model-view paradigm.
|
||||
*/
|
||||
*/ /** */
|
||||
|
||||
/**
|
||||
* Base event data.
|
||||
*/
|
||||
@@ -144,8 +147,13 @@ export class Observable {
|
||||
//@private
|
||||
/**
|
||||
* This method is intended to be overriden by inheritors to provide additional implementation.
|
||||
* @private
|
||||
*/
|
||||
_createPropertyChangeData(name: string, value: any, oldValue?: any): PropertyChangeData;
|
||||
|
||||
/**
|
||||
* @private
|
||||
*/
|
||||
_emit(eventNames: string);
|
||||
//@endprivate
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user