UNPKG

legion-vue-core

Version:

24 lines (23 loc) 456 B
export interface TreeNodeProps { title: any; children?: TreeNodeProps[]; } export interface TreeChildProps { items?: TreeNodeProps; iconShow?: any; iconHide?: any; } export interface TreeProps { /** * Sets the items of the component */ items: TreeNodeProps[]; /** * Sets the iconShow of the component */ iconShow?: any; /** * Sets the iconHide of the component */ iconHide?: any; }