UNPKG

ngx-joyride

Version:

[![npm version](https://badge.fury.io/js/ngx-joyride.svg)](https://badge.fury.io/js/ngx-joyride) [![Build Status](https://travis-ci.org/tnicola/ngx-joyride.svg?branch=master)](https://travis-ci.org/tnicola/ngx-joyride) [![codecov](https://codecov.io/gh/

25 lines (24 loc) 669 B
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>; }