ngx-ui-tour-primeng
Version:
UI tour library for Angular
19 lines (18 loc) • 985 B
TypeScript
import { ElementRef, type OnDestroy, type OnInit } from '@angular/core';
import { type TourAnchorDirective } from 'ngx-ui-tour-core';
import type { PrimeNgStepOption } from './step-option.interface';
import * as i0 from "@angular/core";
export declare class TourAnchorPrimeNgDirective implements OnInit, OnDestroy, TourAnchorDirective {
tourAnchor: string;
isActive: import("@angular/core").WritableSignal<boolean>;
readonly element: ElementRef<any>;
private readonly tourService;
private readonly stepTemplateService;
private popoverCloseSubscription?;
ngOnInit(): void;
ngOnDestroy(): void;
showTourStep(step: PrimeNgStepOption): Promise<void>;
hideTourStep(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<TourAnchorPrimeNgDirective, never>;
static ɵdir: i0.ɵɵDirectiveDeclaration<TourAnchorPrimeNgDirective, "[tourAnchor]", never, { "tourAnchor": { "alias": "tourAnchor"; "required": true; }; }, {}, never, never, true, never>;
}