angular-archwizard
Version:
An Angular 9+ module containing a wizard component and its supporting components and directives
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
}