ngx-material-drawer
Version:
[npm_img]: https://img.shields.io/npm/v/ngx-material-drawer.svg?colorB=0E7FBF [npm_url]: https://www.npmjs.com/package/ngx-material-drawer
14 lines (13 loc) • 572 B
TypeScript
import { OnInit } from '@angular/core';
import { NgxNavService } from '../utils/nav.service';
import { NgxMaterialDrawerEventEmitter } from '../utils/mat-event-emitter.service';
export declare class NgxFabComponent implements OnInit {
navService: NgxNavService;
matEventEmitterService: NgxMaterialDrawerEventEmitter;
expanded: boolean;
fabData: any;
constructor(navService: NgxNavService, matEventEmitterService: NgxMaterialDrawerEventEmitter);
ngOnInit(): void;
onFabClick(item: any): void;
onMainFabClick(item: any): void;
}