UNPKG

antd-mobile-rn

Version:

基于蚂蚁金服移动设计规范的 React Native 组件库

18 lines (17 loc) 617 B
import React from 'react'; import { ActionSheetIOSOptions } from 'react-native'; import { ActionSheetStyle } from './style/index.native'; export interface ActionSheetNativeProps { onAnimationEnd?: (visible: boolean) => void; visible?: boolean; config: ActionSheetIOSOptions; callback?: (index: number) => void; styles?: ActionSheetStyle; } declare class ActionSheetAndroid extends React.Component<ActionSheetNativeProps, any> { constructor(props: ActionSheetNativeProps); confirm(index: number): void; close: () => void; render(): JSX.Element; } export default ActionSheetAndroid;