feat: Add isWXAppInstalled props.
This commit is contained in:
7
index.d.ts
vendored
7
index.d.ts
vendored
@@ -4,4 +4,9 @@
|
||||
* @param appid 通过微信开放平台,[获取appid](https://open.weixin.qq.com/)
|
||||
* @param universalLink Universal Link(通用链接)是苹果在 iOS9 推出的,一种能够方便的通过传统 HTTPS 链接来启动 APP 的功能,可以使用相同的网址打开网址和 APP。
|
||||
*/
|
||||
export function registerApp(appid: string, universalLink: string): void;
|
||||
export function registerApp(appid: string, universalLink: string): void;
|
||||
/**
|
||||
* 检查微信是否已被用户安装
|
||||
* 微信已安装返回 `true`,未安装返回 `false`。
|
||||
*/
|
||||
export function isWXAppInstalled(): Promise<Boolean>;
|
Reference in New Issue
Block a user