UNPKG

297 BTypeScriptView Raw
1import { ElementUIComponent } from './component'
2
3/** Use Collapse to store contents. */
4export declare class ElCollapse extends ElementUIComponent {
5 /** Whether to activate accordion mode */
6 accordion: boolean
7
8 /** Currently active panel */
9 value: string | number | string[] | number[]
10}