You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
636 B
20 lines
636 B
|
3 years ago
|
/**
|
||
|
|
* @file canIUse
|
||
|
|
*/
|
||
|
|
declare namespace my {
|
||
|
|
/**
|
||
|
|
* 判断当前小程序的 API、入参或返回值、组件、属性等在当前版本是否支持。
|
||
|
|
*
|
||
|
|
* 参数使用 ${API}.${type}.${param}.${option} 或者 ${component}.${attribute}.${option} 方式来调用
|
||
|
|
*
|
||
|
|
* API 表示 api 名字
|
||
|
|
* - type 取值 object/return/callback 表示 api 的判断类型
|
||
|
|
* - param 表示参数的某一个属性名
|
||
|
|
* - option 表示参数属性的具体属性值
|
||
|
|
* - component 表示组件名称
|
||
|
|
* - attribute 表示组件属性名
|
||
|
|
* - option 表示组件属性值
|
||
|
|
*/
|
||
|
|
function canIUse(api: string): boolean;
|
||
|
|
}
|