UNPKG

antd-mobile

Version:

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

23 lines (22 loc) 584 B
interface Props { onOpenChange?: (isOpen: boolean) => void; sidebar?: any; open?: boolean; position?: 'left' | 'right' | 'top' | 'bottom'; children?: any; /** below web only */ sidebarStyle?: Object; contentStyle?: Object; overlayStyle?: Object; dragHandleStyle?: Object; docked?: boolean; transitions?: boolean; touch?: boolean; dragToggleDistance?: number; prefixCls?: string; /** below rn only */ drawerRef?: (el: any) => any; drawerWidth?: number; drawerBackgroundColor?: string; } export default Props;