src/interfaces/step.interface.ts
Represents a step in a sequence of steps.
Properties |
status |
status:
|
Type : string
|
The status of the step (e.g., "completed", "active", "disabled"). |
tip |
tip:
|
Type : string
|
Optional |
Additional information or a tip related to the step. |
export interface Step {
/**
* Additional information or a tip related to the step.
*/
tip?: string;
/**
* The status of the step (e.g., "completed", "active", "disabled").
*/
status: string;
}