Type Alias TSegmentCustomMusic

TSegmentCustomMusic: TSegmentBase & {
    data: {
        audio: string;
        content?: string;
        image?: string;
        title: string;
        type: "custom";
        url: string;
    };
    type: "music";
}

Type declaration

  • data: {
        audio: string;
        content?: string;
        image?: string;
        title: string;
        type: "custom";
        url: string;
    }
    • audio: string

      audio 音乐 URL

    • Optionalcontent?: string

      content 内容描述,可选

    • Optionalimage?: string

      image 图片 URL,可选

    • title: string

      title 标题

    • type: "custom"
    • url: string

      url 跳转链接

  • type: "music"