ngx-materialize
Version:
An Angular wrap around Materialize library
10 lines (9 loc) • 350 B
TypeScript
import { AfterViewInit, ElementRef, OnDestroy } from '@angular/core';
export declare abstract class MzRemoveComponentHost implements AfterViewInit, OnDestroy {
elementRef: ElementRef;
private childrenElement;
private parentElement;
constructor(elementRef: ElementRef);
ngAfterViewInit(): void;
ngOnDestroy(): void;
}