@hyext/types-ext-sdk-hy 3.18.1-beta.7 → 3.18.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 +2 -24
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1044,12 +1044,6 @@ namespace advance {
|
|
|
1044
1044
|
* @returns 调用结果
|
|
1045
1045
|
*/
|
|
1046
1046
|
function setCustomizeVideoLayoutAvailability(params: SetCustomizeVideoLayoutAvailabilityReq): Promise<void>;
|
|
1047
|
-
/**
|
|
1048
|
-
* 按标签获取SEI数据
|
|
1049
|
-
* @param params - 传入参数
|
|
1050
|
-
* @returns 调用结果
|
|
1051
|
-
*/
|
|
1052
|
-
function getSeiContentByPort(params: GetSeiContentByPortReq): Promise<GetSeiContentByPortRsp>;
|
|
1053
1047
|
/**
|
|
1054
1048
|
* 监听SEI数据变化
|
|
1055
1049
|
* @param params - 传入参数
|
|
@@ -1868,22 +1862,6 @@ type SetCustomizeVideoLayoutAvailabilityReq = {
|
|
|
1868
1862
|
msg?: string;
|
|
1869
1863
|
};
|
|
1870
1864
|
|
|
1871
|
-
/**
|
|
1872
|
-
* SEI数据
|
|
1873
|
-
* @property content - SEI内容
|
|
1874
|
-
*/
|
|
1875
|
-
type GetSeiContentByPortRsp = {
|
|
1876
|
-
content: string;
|
|
1877
|
-
};
|
|
1878
|
-
|
|
1879
|
-
/**
|
|
1880
|
-
* 按标签获取SEI数据参数
|
|
1881
|
-
* @property port - port
|
|
1882
|
-
*/
|
|
1883
|
-
type GetSeiContentByPortReq = {
|
|
1884
|
-
port: string;
|
|
1885
|
-
};
|
|
1886
|
-
|
|
1887
1865
|
/**
|
|
1888
1866
|
* SEI数据
|
|
1889
1867
|
* @property content - SEI内容
|
|
@@ -1903,7 +1881,7 @@ type SeiContentChange = (notices: SeiContent) => void;
|
|
|
1903
1881
|
* @property callback - SEI数据变化回调
|
|
1904
1882
|
*/
|
|
1905
1883
|
type OnSeiContentChangeReq = {
|
|
1906
|
-
port:
|
|
1884
|
+
port: number;
|
|
1907
1885
|
callback: SeiContentChange;
|
|
1908
1886
|
};
|
|
1909
1887
|
|
|
@@ -1912,7 +1890,7 @@ type OnSeiContentChangeReq = {
|
|
|
1912
1890
|
* @property port - port
|
|
1913
1891
|
*/
|
|
1914
1892
|
type OffSeiContentChangeReq = {
|
|
1915
|
-
port:
|
|
1893
|
+
port: number;
|
|
1916
1894
|
};
|
|
1917
1895
|
|
|
1918
1896
|
/**
|