@ant-design/react-native
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
15 lines (14 loc) • 484 B
TypeScript
import React from 'react';
import { Animated } from 'react-native';
import { SwipeoutButtonProps } from './PropsType';
import { SwipeActionStyle } from './style';
interface RenderActionsProps {
buttons?: SwipeoutButtonProps[];
closeOnAction: boolean;
isLeft: boolean;
progressAnimatedValue: Animated.AnimatedInterpolation;
setClose: () => void;
styles?: Partial<SwipeActionStyle>;
}
export declare const RenderActions: React.FC<RenderActionsProps>;
export {};