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/

21 lines (20 loc) 722 B
import { ViewContainerRef, TemplateRef, EventEmitter } from '@angular/core'; import { JoyrideStepComponent } from '../components/step/joyride-step.component'; import { ReplaySubject } from 'rxjs'; export declare class JoyrideStep { constructor(); name: string; route: string; position: string; title: ReplaySubject<string>; text: ReplaySubject<string>; stepContent: TemplateRef<any>; stepContentParams: Object; nextClicked: EventEmitter<any>; prevCliked: EventEmitter<any>; tourDone: EventEmitter<any>; transformCssStyle: string; isElementOrAncestorFixed: boolean; targetViewContainer: ViewContainerRef; stepInstance: JoyrideStepComponent; }