wx.onKeyboardHeightChange API的文档说明和声明文件需要更新?
发布于 6 年前 作者 xshen 14052 次浏览 来自 问答
interface OnKeyboardHeightChangeCallbackResult {
    /** 键盘高度 */
    height: number
}
项目使用typescript, 发现wx.onKeyboardHeightChange API的回调函数的参数属性在API文档和TS声明文件只写了一个height, 然而真机打印还有一个duration属性, 望及时更新.
ts声明文件使用的是npm的miniprogram-api-typings官方库
1 回复

目前暂时以这样的方式处理TS类型报错

res: WechatMiniprogram.OnKeyboardHeightChangeCallbackResult & { duration: number }
回到顶部