@cmdap/ng-wizard
Version:
A simple wizard/stepper component for Angular 9 utilizing Angular Routing for navigation.
13 lines (12 loc) • 358 B
TypeScript
import { ComponentRef } from '@angular/core';
import { NgWizardStepOptions } from './ng-wizard-step-options';
export interface NgWizardStepData {
order: number;
componentName: string;
componentRef?: ComponentRef<any>;
path: string;
previousStep?: string;
nextStep?: string;
isCurrent: boolean;
options: NgWizardStepOptions;
}