UNPKG

systelab-components

Version:

systelab-components is a set of components that use wide accepted and adopted standard technologies like Angular and Bootstrap, as well as other popular libraries. Please read the ATTRIBUTION.md file for a complete list of dependencies.

18 lines (17 loc) 560 B
export declare class ApplicationSidebarTab { id: string; name: string; isSelected: boolean; subMenu?: ApplicationSidebarTab[]; action?: (id: string) => void; icon?: string; constructor(id: string, name: string, isSelected: boolean, subMenu?: ApplicationSidebarTab[], action?: (id: string) => void, icon?: string); } export declare class ApplicationSidebarAction { name: string; action: any; icon?: string; constructor(name: string, action: any, icon?: string); } export declare class ApplicationSidebarComponent { }