Skip to content

Commit

Permalink
feat(taro): 分享参数增加动态消息相关字段 #4618
Browse files Browse the repository at this point in the history
  • Loading branch information
luckalphie authored and Garfield550 committed Oct 25, 2019
1 parent a51ee6a commit d95f3cc
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion packages/taro/types/api/share/share.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,19 @@ declare namespace Taro {
/**
* 是否使用带 shareTicket 的转发[详情](https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/share.html)
*/
withShareTicket?: boolean
withShareTicket?: boolean,
isUpdatableMessage?: boolean,
activityId?: string,
templateInfo?: TemplateInfo
}

interface TemplateInfo {
parameterList: Array<TemplateInfoParameter>
}

interface TemplateInfoParameter {
name: string,
value: string
}
}
/**
Expand Down

0 comments on commit d95f3cc

Please sign in to comment.