UNPKG

@douyinfe/semi-ui

Version:

A modern, comprehensive, flexible design system and UI library. Connect DesignOps & DevOps. Quickly build beautiful React apps. Maintained by Douyin-fe team.

12 lines (11 loc) 330 B
import React, { ReactNode } from 'react'; interface NodeCollapsibleProps { key?: string; open?: boolean; motion?: boolean; duration?: number; onMotionEnd?: () => void; children?: ReactNode; } declare function NodeCollapsible(props: NodeCollapsibleProps): React.JSX.Element; export default NodeCollapsible;