angular-bootstrap-md
Version:
<a href="http://mdbootstrap.com/docs/angular/getting-started/download/"><img src="https://mdbootstrap.com/img/Marketing/general/logo/medium/mdb-angular2.png"></a> # Angular Bootstrap with Material Design
10 lines (9 loc) • 318 B
TypeScript
import { EventEmitter, OnInit, OnDestroy, ElementRef } from '@angular/core';
export declare class MdbTableRowDirective implements OnInit, OnDestroy {
private el;
rowCreated: EventEmitter<any>;
rowRemoved: EventEmitter<any>;
constructor(el: ElementRef);
ngOnInit(): void;
ngOnDestroy(): void;
}