UNPKG

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