@ant-design/react-native
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
13 lines (12 loc) • 434 B
TypeScript
import React from 'react';
import { TextStyle } from 'react-native';
import { Action } from './PropsType';
export interface OperationContainerProps {
actions: Action<TextStyle>[];
onAnimationEnd?: (visible: boolean) => void;
}
export default class OperationContainer extends React.Component<OperationContainerProps, any> {
constructor(props: OperationContainerProps);
onClose: () => void;
render(): JSX.Element;
}