1 | import { ComponentType } from 'react'
|
2 | import { StandardProps } from './common'
|
3 | interface AwemeDataProps extends StandardProps {
|
4 | /** 用户的抖音号,可以进入抖音 App 用户个人主页查看
|
5 | * @supported tt
|
6 | */
|
7 | awemeId?: string
|
8 | /** 类型,可以选择头像或昵称
|
9 | * @supported tt
|
10 | * @default "avatar"
|
11 | */
|
12 | type?: string
|
13 | /** 禁用默认行为。点击头像时,如果用户处于直播状态下默认会跳转到直播间,非直播状态下跳转到个人主页。如果为 true,点击头像时不会有默认行为。
|
14 | * @supported tt
|
15 | * @default false
|
16 | */
|
17 | disableDefault?: boolean
|
18 | /** 获取信息失败时显示的默认头像 url
|
19 | * @supported tt
|
20 | */
|
21 | defaultAvatar?: string
|
22 | /** 获取信息失败时显示的默认昵称文本
|
23 | * @supported tt
|
24 | */
|
25 | defaultText?: string
|
26 | /** 当错误发生时触发
|
27 | * @supported tt
|
28 | */
|
29 | onError?: CommonEventFunction
|
30 | }
|
31 | /** 直播间状态组件
|
32 | * @classification open
|
33 | * @supported tt
|
34 | * @see https://developer.open-douyin.com/docs/resource/zh-CN/mini-app/develop/component/open-capacity/aweme-data/
|
35 | */
|
36 | declare const AwemeData: ComponentType<AwemeDataProps>
|
37 | export { AwemeData, AwemeDataProps }
|