@hyext/types-ext-sdk-hy 3.18.1-beta.2 → 3.18.1-beta.4
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 +9 -9
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1049,7 +1049,7 @@ namespace advance {
|
|
|
1049
1049
|
* @param params - 传入参数
|
|
1050
1050
|
* @returns 调用结果
|
|
1051
1051
|
*/
|
|
1052
|
-
function
|
|
1052
|
+
function getSeiContentByPort(params: GetSeiContentByPortReq): Promise<GetSeiContentByPortRsp>;
|
|
1053
1053
|
/**
|
|
1054
1054
|
* 监听SEI数据变化
|
|
1055
1055
|
* @param params - 传入参数
|
|
@@ -1872,16 +1872,16 @@ type SetCustomizeVideoLayoutAvailabilityReq = {
|
|
|
1872
1872
|
* SEI数据
|
|
1873
1873
|
* @property content - SEI内容
|
|
1874
1874
|
*/
|
|
1875
|
-
type
|
|
1875
|
+
type GetSeiContentByPortRsp = {
|
|
1876
1876
|
content: string;
|
|
1877
1877
|
};
|
|
1878
1878
|
|
|
1879
1879
|
/**
|
|
1880
1880
|
* 按标签获取SEI数据参数
|
|
1881
|
-
* @property
|
|
1881
|
+
* @property port - port
|
|
1882
1882
|
*/
|
|
1883
|
-
type
|
|
1884
|
-
|
|
1883
|
+
type GetSeiContentByPortReq = {
|
|
1884
|
+
port: string;
|
|
1885
1885
|
};
|
|
1886
1886
|
|
|
1887
1887
|
/**
|
|
@@ -1899,20 +1899,20 @@ type SeiContentChange = (notices: SeiContent) => void;
|
|
|
1899
1899
|
|
|
1900
1900
|
/**
|
|
1901
1901
|
* 监听SEI数据变化参数
|
|
1902
|
-
* @property
|
|
1902
|
+
* @property port - port
|
|
1903
1903
|
* @property callback - SEI数据变化回调
|
|
1904
1904
|
*/
|
|
1905
1905
|
type OnSeiContentChangeReq = {
|
|
1906
|
-
|
|
1906
|
+
port: string;
|
|
1907
1907
|
callback: SeiContentChange;
|
|
1908
1908
|
};
|
|
1909
1909
|
|
|
1910
1910
|
/**
|
|
1911
1911
|
* 取消监听SEI数据变化参数
|
|
1912
|
-
* @property
|
|
1912
|
+
* @property port - port
|
|
1913
1913
|
*/
|
|
1914
1914
|
type OffSeiContentChangeReq = {
|
|
1915
|
-
|
|
1915
|
+
port: string;
|
|
1916
1916
|
};
|
|
1917
1917
|
|
|
1918
1918
|
/**
|