@hylid/types 3.2.0-alpha.8 → 3.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/common.d.ts +1 -1
- package/package.json +1 -1
package/lib/common.d.ts
CHANGED
|
@@ -10,6 +10,6 @@ export declare type Callback<T> = (result?: T) => void;
|
|
|
10
10
|
* @property {string} async 参数有回调函数的异步 JSAPI(如: my.getSystemInfo)
|
|
11
11
|
* @property {string} sync 参数无回调函数的不同 JSAPI(如: my.getSystemInfoSync)
|
|
12
12
|
* @property {string} callback 参数是回调函数的 JSAPI(如: my.onAppShow)
|
|
13
|
-
* @property {string} attribute 访问 my 对象上的属性(如: my.SDKVersion
|
|
13
|
+
* @property {string} attribute 访问 my 对象上的属性(如: my.SDKVersion)套壳 H5 only
|
|
14
14
|
*/
|
|
15
15
|
export declare type JsApiType = 'async' | 'sync' | 'callback' | 'attribute';
|