UNPKG

antd-mini

Version:

antd-mini 是支付宝小程序 UI 组件库,遵循 Ant Design 规范。

24 lines (23 loc) 514 B
import { IBaseProps } from '../_util/base'; interface IActionItem { /** * @description 操作文本 */ label: string; /** * @description 图标地址 */ icon?: string; } interface IActionsProps extends IBaseProps { /** * @description 操作列表 */ items: IActionItem[]; /** * @description 点击操作的回调 */ onItemTap?: (action: IActionItem) => void; } export declare const ActionsProps: IActionsProps; export type { IActionsProps };