1 | import { ComponentType } from 'react'
|
2 | import { StandardProps } from './common'
|
3 | interface LifestyleProps extends StandardProps {
|
4 | /** 必填,生活号 ID(即生活号 APPID),必须是当前小程序同账号主体且已关联的生活号。
|
5 | * @supported alipay
|
6 | */
|
7 | publicId?: string
|
8 | /** 文案。支持商家自定义,最多展示一行。
|
9 | * @supported alipay
|
10 | */
|
11 | memo?: string
|
12 | /** 当用户关注生活号成功后执行。
|
13 | * @supported alipay
|
14 | */
|
15 | onFollow?: CommonEventFunction
|
16 | }
|
17 | /** 关注生活号
|
18 | * @classification open
|
19 | * @supported alipay
|
20 | * @see https://opendocs.alipay.com/mini/component/lifestyle
|
21 | */
|
22 | declare const Lifestyle: ComponentType<LifestyleProps>
|
23 | export { Lifestyle, LifestyleProps }
|