ngx-obelisco-example
Version:
Componentes funcionales y reutilizables para Angular.
27 lines (26 loc) • 722 B
TypeScript
export interface NavbarRouteBase {
iconLeft?: string;
title?: string;
iconRight?: string;
route?: string;
link?: string;
}
export interface NavbarRoute extends NavbarRouteBase {
children?: NavbarRouteItem[];
}
export interface NavbarRouteItem extends NavbarRouteBase {
isOverviewItem?: boolean;
}
export interface NavbarRouteAccount extends NavbarRouteBase {
children?: NavbarRouteAccountItem[];
}
export interface NavbarRouteAccountItem extends NavbarRouteBase {
isDangerTitle?: boolean;
isWithNotification?: boolean;
}
export interface NavbarRouteLogin extends NavbarRouteBase {
}
export interface SearchbarItem {
title: string;
route: string;
}