ngx-joyride
Version:
An Angular Tour (Joyride) library built entirely in Angular, without using any heavy external dependencies like Bootstrap or JQuery. From now on you can easily guide your users through your site showing them all the sections and features.
25 lines (24 loc) • 885 B
TypeScript
import { RendererFactory2 } from '@angular/core';
import { Subject } from 'rxjs';
import { DomRefService } from './dom.service';
import * as i0 from "@angular/core";
export declare class Scroll {
scrollX: number;
scrollY: number;
}
export declare class EventListenerService {
private readonly rendererFactory;
private readonly DOMService;
private renderer;
private scrollUnlisten;
private resizeUnlisten;
scrollEvent: Subject<Scroll>;
resizeEvent: Subject<number>;
constructor(rendererFactory: RendererFactory2, DOMService: DomRefService);
startListeningScrollEvents(): void;
startListeningResizeEvents(): void;
stopListeningScrollEvents(): void;
stopListeningResizeEvents(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<EventListenerService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<EventListenerService>;
}