antd-mobile
Version:
基于 React 的移动设计规范实现
16 lines (15 loc) • 350 B
TypeScript
interface SwipeActionProps {
/** whether button is disabled*/
autoClose?: boolean;
disabled?: boolean;
title?: string;
left?: Array<{}>;
right?: Array<{}>;
onOpen?: () => void;
style?: {};
/** web only */
prefixCls?: string;
className?: string;
onClose?: () => void;
}
export default SwipeActionProps;