File

src/interfaces/step.interface.ts

Description

Represents a step in a sequence of steps.

Index

Properties

Properties

status
status: string
Type : string

The status of the step (e.g., "completed", "active", "disabled").

tip
tip: string
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;
}

results matching ""

    No results matching ""