antd-mobile
Version:
基于 React 的移动设计规范实现
14 lines (13 loc) • 339 B
TypeScript
interface AccordionProps {
styles?: any;
style?: any;
/** below web only */
className?: string;
prefixCls?: string;
activeKey?: string | Array<string>;
defaultActiveKey?: string | Array<string>;
openAnimation?: any;
accordion?: boolean;
onChange?: (x: any) => void;
}
export default AccordionProps;