@cause-911/material
Version:
Run `npm install @cause-911/material --save` to add this library to your project
13 lines (12 loc) • 418 B
TypeScript
import { EventEmitter, OnInit } from '@angular/core';
import { Router } from '@angular/router';
import { MenuItem } from '../shared/models/menu-item';
export declare class MenuVerticalComponent implements OnInit {
private router;
itemClick: EventEmitter<any>;
menuItems: MenuItem[];
constructor(router: Router);
ngOnInit(): void;
goTo(path: any, e: any): void;
private selectActiveRoute;
}