@dimanoid/ngx-dm-tour
Version:
11 lines (10 loc) • 358 B
TypeScript
import { ElementRef, AfterViewInit, OnDestroy } from '@angular/core';
import { DmTourService } from './dm-tour.service';
export declare class DmTourDirective implements AfterViewInit, OnDestroy {
private _el;
private _ts;
item: string;
constructor(_el: ElementRef, _ts: DmTourService);
ngAfterViewInit(): void;
ngOnDestroy(): void;
}