@rg-software/angular-archwizard
Version:
A fork of the Angular Arch Wizard adapted for angular versions 17+.
25 lines (24 loc) • 457 B
TypeScript
/**
* The direction in which a step transition was made
*
* @author Marc Arndt
*/
/**
* This enum contains the different possible moving directions in which a wizard can be traversed
*
* @author Marc Arndt
*/
export declare enum MovingDirection {
/**
* A forward step transition
*/
Forwards = 0,
/**
* A backward step transition
*/
Backwards = 1,
/**
* No step transition was done
*/
Stay = 2
}