ngx-material-drawer
Version:
A dynamic, configurable Angular Material drawer with dashboard capabilities
20 lines (19 loc) • 1.06 kB
TypeScript
import { OnInit } from "@angular/core";
import { NgxNavService } from "../utils/nav.service";
import { NgxMaterialDrawerEventEmitter } from "../utils/mat-event-emitter.service";
import { NgxUtilsService } from "../utils/utils.service";
import * as i0 from "@angular/core";
export declare class NgxNavListItemComponent implements OnInit {
navService: NgxNavService;
matEventEmitterService: NgxMaterialDrawerEventEmitter;
ngxUtilsService: NgxUtilsService;
expanded: boolean;
ariaExpanded: boolean;
item: any;
depth: number;
constructor(navService: NgxNavService, matEventEmitterService: NgxMaterialDrawerEventEmitter, ngxUtilsService: NgxUtilsService);
ngOnInit(): void;
onItemSelected(item: any): void;
static ɵfac: i0.ɵɵFactoryDeclaration<NgxNavListItemComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<NgxNavListItemComponent, "lib-nav-list-item", never, { "item": { "alias": "item"; "required": false; }; "depth": { "alias": "depth"; "required": false; }; }, {}, never, never, false, never>;
}