@td-design/react-native
Version:
react-native UI组件库
19 lines • 522 B
TypeScript
import { ReactNode } from 'react';
import { ActionSheetItemProps } from './ActionSheetItem';
export interface ActionSheetProps {
/** 标题 */
title?: ReactNode;
/** 操作项列表 */
items: ActionSheetItemProps[];
/** 按下时的不透明度 */
activeOpacity?: number;
/** 关闭文字 */
cancelText?: string;
}
declare const ActionSheet: {
(): null;
displayName: string;
show(props: ActionSheetProps): void;
};
export default ActionSheet;
//# sourceMappingURL=index.d.ts.map