File

src/app/core/admin/setup-wizard/setup-wizard-config.ts

Index

Properties

Properties

actions
actions: MenuItem[]
Type : MenuItem[]
Optional
text
text: string
Type : string
title
title: string
Type : string
import { MenuItem } from "../../ui/navigation/menu-item";

export const CONFIG_SETUP_WIZARD_ID = "Config:SetupWizard";

export interface SetupWizardConfig {
  /** whether the wizard has been completed overall and should be hidden */
  finished?: boolean;

  /** whether users should on startup be navigated automatically to the setup wizard screen while it is not finished */
  openOnStart?: boolean;

  steps: SetupWizardStep[];
}

export interface SetupWizardStep {
  title: string;
  text: string;
  actions?: MenuItem[];
}

results matching ""

    No results matching ""