TSegmentShare: TSegmentBase & {
    data: {
        content?: string;
        image?: string;
        title: string;
        url: string;
    };
    type: "share";
}

Type declaration

  • data: {
        content?: string;
        image?: string;
        title: string;
        url: string;
    }
    • Optionalcontent?: string

      content 内容描述,可选

    • Optionalimage?: string

      url 图片 URL

    • title: string
    • url: string
  • type: "share"