Add module names for the typedoc, make it work

Mark members with @private for typedoc.
This commit is contained in:
Panayot Cankov
2017-04-19 13:39:17 +03:00
parent c59077161f
commit d098ff43f5
101 changed files with 647 additions and 186 deletions

View File

@@ -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
}