/* tslint:disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ export interface AwemeData { /** * 用户的抖音号,可以进入抖音 App 用户个人主页查看 */ "aweme-id": string; /** * 类型,可以选择头像或昵称 */ type?: { [k: string]: unknown; }; /** * 是否禁用头像点击的默认行为。 * 如果为false,点击头像时,如果用户处于直播状态下会跳转到直播间,非直播状态下跳转到个人主页。 * 如果为 true,点击头像将不会有任何的跳转行为。 */ "disable-default"?: boolean; /** * 获取信息失败时显示的默认头像 url */ "default-avatar"?: string; /** * 获取信息失败时显示的默认昵称文本 */ "default-text"?: string; /** * 当错误发生时触发 */ bindError?: () => void; }