antd-mobile-rn
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
12 lines (11 loc) • 405 B
TypeScript
import React from 'react';
import { StyleProp, TextStyle, ViewStyle } from 'react-native';
import { SwipeActionPropsType } from './PropsType';
export interface SwipeActionProps extends SwipeActionPropsType<TextStyle> {
styles?: any;
style?: StyleProp<ViewStyle>;
}
declare class SwipeAction extends React.Component<SwipeActionProps, any> {
render(): JSX.Element;
}
export default SwipeAction;