UNPKG

791 BTypeScriptView Raw
1import { ComponentType } from 'react'
2import { StandardProps } from './common'
3
4interface ChannelLiveProps extends StandardProps {
5 /** 视频 feedId
6 * @supported weapp
7 */
8 feedId: string
9
10 /** 视频号 id,以“sph”开头的id,可在视频号助手获取。视频号必须与当前小程序相同主体。
11 * @supported weapp
12 */
13 finderUserName: string
14}
15
16/**
17 * 小程序内嵌视频号直播组件,展示视频号直播状态和封面,并无弹窗跳转至视频号。注意:使用该组件打开的视频号视频需要与小程序的主体一致。
18 * @supported weapp
19 * @see https://developers.weixin.qq.com/miniprogram/dev/component/channel-live.html
20 */
21declare const ChannelLive: ComponentType<ChannelLiveProps>
22export { ChannelLive, ChannelLiveProps }