angular-sidebar-menu
Version:
The sources for this package are in the [Angular Sidebar Menu](https://github.com/mledour/angular-sidebar-menu) repo. Please file issues and pull requests against that repo.
14 lines (13 loc) • 436 B
TypeScript
import { EventEmitter } from '@angular/core';
import { MenuItem } from '../sidebar-menu.interface';
import { AnchorService } from './anchor.service';
export declare class AnchorComponent {
anchorService: AnchorService;
menuItem: MenuItem;
isActive?: boolean;
disable: boolean;
clickAnchor: EventEmitter<void>;
get active(): boolean;
private routerLinActive?;
constructor(anchorService: AnchorService);
}