UNPKG

antd-mobile

Version:

基于 React 的移动设计规范实现

17 lines (16 loc) 481 B
/// <reference types="react" /> import React from 'react'; export declare type OperationButtonType = { text: string; onPress?: () => void; style?: any; }; export interface OperationContainerProps { actions: Array<OperationButtonType>; onAnimationEnd?: (visible: boolean) => void; } export default class OperationContainer extends React.Component<OperationContainerProps, any> { constructor(props: any); onClose: () => void; render(): JSX.Element; }