mirror of https://github.com/ElemeFE/element
14 lines
316 B
TypeScript
14 lines
316 B
TypeScript
import { ElementUIComponent } from './component'
|
|
|
|
/** Submenu Component */
|
|
export declare class ElSubmenu extends ElementUIComponent {
|
|
/** Unique identification */
|
|
index: string
|
|
|
|
/** Delay time before show a sub-menu */
|
|
showTimeout: number
|
|
|
|
/** Delay time before hide a sub-menu */
|
|
hideTimeout: number
|
|
}
|