sidenav-menu-arrows
Version:
Material Multi-Level Menu for Angular Projects.
34 lines (33 loc) • 778 B
TypeScript
export interface MultilevelNodes {
id?: string;
label: string;
faIcon?: string;
icon?: string;
imageIcon?: string;
svgIcon?: string;
hidden?: boolean;
link?: string;
externalRedirect?: boolean;
data?: any;
items?: MultilevelNodes[];
onSelected?: Function;
}
export interface Configuration {
classname?: string;
paddingAtStart?: boolean;
backgroundColor?: string;
listBackgroundColor?: string;
fontColor?: string;
selectedListFontColor?: string;
interfaceWithRoute?: boolean;
collapseOnSelect?: boolean;
highlightOnSelect?: boolean;
rtlLayout?: boolean;
}
export interface BackgroundStyle {
background: string;
}
export interface ListStyle {
background: string;
color: string;
}