UNPKG

rtaro-ui

Version:
33 lines (21 loc) 707 B
import { ComponentClass } from 'react' import { CommonEventFunction } from '@rtarojs/components/types/common' import AtComponent from './base' export interface AtActionSheetHeaderProps extends AtComponent { title?: string message?: string } export interface AtActionSheetFooterProps extends AtComponent { onClick?: CommonEventFunction } export interface AtActionSheetProps extends AtComponent { title?: string message?: string cancelText?: string onClose?: CommonEventFunction onCancel?: CommonEventFunction maskClosable?: boolean visible?: boolean } declare const AtActionSheet: ComponentClass<AtActionSheetProps> export default AtActionSheet