antd-mobile-rn
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
24 lines (23 loc) • 492 B
TypeScript
/**
* T for web or react native
*/
export interface SwipeActionPropsType<T> {
/** whether button is disabled*/
autoClose?: boolean;
disabled?: boolean;
title?: string;
left?: Array<{
text: string;
onPress?: () => void;
style?: T;
className?: string;
}>;
right?: Array<{
text: string;
onPress?: () => void;
style?: T;
className?: string;
}>;
onOpen?: () => void;
onClose?: () => void;
}