mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +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/utils/utils.d.ts
vendored
10
tns-core-modules/utils/utils.d.ts
vendored
@ -1,15 +1,21 @@
|
||||
/**
|
||||
* @module "utils/utils"
|
||||
*/ /** */
|
||||
|
||||
export var RESOURCE_PREFIX: string;
|
||||
|
||||
//@private
|
||||
/**
|
||||
* Used by various android event listener implementations
|
||||
* Used by various android event listener implementations.
|
||||
* @private
|
||||
*/
|
||||
interface Owned {
|
||||
owner: any;
|
||||
}
|
||||
|
||||
/**
|
||||
* Used to cache and restore Android views' layer type, i.e. android.view.View.getLayerType and android.view.View.setLayerType.
|
||||
* Used to cache and restore Android views' layer type, i.e. android.view.View.getLayerType and android.view.View.setLayerType.
|
||||
* @private
|
||||
*/
|
||||
interface CacheLayerType {
|
||||
layerType: number;
|
||||
|
Reference in New Issue
Block a user