angular-archwizard
Version:
An Angular 9+ module containing a wizard component and its supporting components and directives
29 lines (28 loc) • 708 B
TypeScript
import { OnInit } from '@angular/core';
import { WizardStep } from '../util/wizard-step.interface';
/**
* The `awSelectedStep` directive can be used on a [[WizardStep]] to set it as selected after the wizard initialisation or a reset.
*
* ### Syntax
*
* ```html
* <aw-wizard-step stepTitle="Step title" awSelectedStep>
* ...
* </aw-wizard-step>
* ```
*
* @author Marc Arndt
*/
export declare class SelectedStepDirective implements OnInit {
private wizardStep;
/**
* Constructor
*
* @param wizardStep The wizard step, which should be selected by default
*/
constructor(wizardStep: WizardStep);
/**
* Initialization work
*/
ngOnInit(): void;
}