ngx-joyride
Version:
[](https://badge.fury.io/js/ngx-joyride) [](https://travis-ci.org/tnicola/ngx-joyride) [ • 669 B
TypeScript
import { Observable } from 'rxjs';
export declare class JoyrideOptions {
steps: string[];
startWith?: string;
waitingTime?: number;
stepDefaultPosition?: string;
themeColor?: string;
showCounter?: boolean;
showPrevButton?: boolean;
customTexts?: CustomTexts;
logsEnabled?: boolean;
}
export declare class ICustomTexts {
prev?: any;
next?: any;
done?: any;
close?: any;
}
export declare class CustomTexts implements ICustomTexts {
prev?: string | Observable<string>;
next?: string | Observable<string>;
done?: string | Observable<string>;
close?: string | Observable<string>;
}