@hyext/types-ext-sdk-hy 3.15.0-beta.2 → 3.15.0-beta.3
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/index.d.ts +4 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9032,19 +9032,23 @@ type TriggerVideoClickReq = {
|
|
|
9032
9032
|
/**
|
|
9033
9033
|
* 键盘输入返回
|
|
9034
9034
|
* @property text - 输入的文字
|
|
9035
|
+
* @property [from] - 来源, confirm-点击完成, mask-点击空白
|
|
9035
9036
|
*/
|
|
9036
9037
|
type ShowInputBarRsp = {
|
|
9037
9038
|
text: string;
|
|
9039
|
+
from?: string;
|
|
9038
9040
|
};
|
|
9039
9041
|
|
|
9040
9042
|
/**
|
|
9041
9043
|
* 展示APP端键盘输入框参数
|
|
9042
9044
|
* @property [text] - 默认文字
|
|
9043
9045
|
* @property [placeholder] - 默认提示文字
|
|
9046
|
+
* @property [btnText] - 完成按钮文字
|
|
9044
9047
|
*/
|
|
9045
9048
|
type ShowInputBarReq = {
|
|
9046
9049
|
text?: string;
|
|
9047
9050
|
placeholder?: string;
|
|
9051
|
+
btnText?: string;
|
|
9048
9052
|
};
|
|
9049
9053
|
|
|
9050
9054
|
/**
|