@hyext/types-ext-sdk-hy 3.11.0 → 3.11.1-beta.1
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 +24 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -6758,6 +6758,12 @@ namespace ui {
|
|
|
6758
6758
|
* @returns 调用结果
|
|
6759
6759
|
*/
|
|
6760
6760
|
function triggerVideoClick(params: TriggerVideoClickReq): Promise<void>;
|
|
6761
|
+
/**
|
|
6762
|
+
* 展示键盘输入框
|
|
6763
|
+
* @param params - 调用参数
|
|
6764
|
+
* @returns 调用结果
|
|
6765
|
+
*/
|
|
6766
|
+
function showInputBar(params: ShowInputBarReq): Promise<ShowInputBarRsp>;
|
|
6761
6767
|
}
|
|
6762
6768
|
|
|
6763
6769
|
/**
|
|
@@ -6863,6 +6869,24 @@ type TriggerVideoClickReq = {
|
|
|
6863
6869
|
clientY: number;
|
|
6864
6870
|
};
|
|
6865
6871
|
|
|
6872
|
+
/**
|
|
6873
|
+
* 键盘输入返回
|
|
6874
|
+
* @property text - 输入的文字
|
|
6875
|
+
*/
|
|
6876
|
+
type ShowInputBarRsp = {
|
|
6877
|
+
text: string;
|
|
6878
|
+
};
|
|
6879
|
+
|
|
6880
|
+
/**
|
|
6881
|
+
* 展示APP端键盘输入框参数
|
|
6882
|
+
* @property text - 默认文字
|
|
6883
|
+
* @property placeholder - 默认提示文字
|
|
6884
|
+
*/
|
|
6885
|
+
type ShowInputBarReq = {
|
|
6886
|
+
text: string;
|
|
6887
|
+
placeholder: string;
|
|
6888
|
+
};
|
|
6889
|
+
|
|
6866
6890
|
/**
|
|
6867
6891
|
* HY vidoe
|
|
6868
6892
|
*/
|