虎牙开放平台文档

hyExt.stream.deleteWB

  • 删除白板
  • 引入版本 1.10.0
  • 适用终端
    • 虎牙直播助手-iOS:4.9.0
    • 虎牙直播助手-安卓:4.9.0
    • 虎牙直播PC客户端-主播侧:4.16.1.0

接口签名

declare namespace hyExt { module stream { /** * 删除白板 * @param params 输入参数 */ function deleteWB(params: WhiteBoardInfo): Promise<void> } /** * 白板信息 */ type WhiteBoardInfo = { /** * 白板ID */ wbId: string } }

示例代码

hyExt.stream .deleteWB({ wbId: "wbId", }) .then(() => { console.log("调用hyExt.stream.deleteWB成功") }) .catch((err) => { console.log("调用hyExt.stream.deleteWB失败", err) })

相关链接