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