@cmdap/ng-wizard
Version:
A simple wizard/stepper component for Angular 9 utilizing Angular Routing for navigation.
14 lines (13 loc) • 551 B
TypeScript
import { OnInit } from '@angular/core';
import { NgWizardService } from '../ng-wizard.service';
import { NgWizardStepData } from '../ng-wizard-step/ng-wizard-step-data.interface';
import { NgWizardOptions } from '../ng-wizard-options/ng-wizard-options.interface';
export declare class NgWizardNavigationComponent implements OnInit {
private service;
stepData$: any;
currentStepData: any;
wizardOptions: NgWizardOptions;
constructor(service: NgWizardService);
ngOnInit(): void;
goToStep(stepData: NgWizardStepData): void;
}