frontend
    Preparing search index...

    Props for the TutorialSuggestDialog component.

    interface TutorialSuggestDialogProps {
        dontShowAgain: boolean;
        onDontShowAgainChange: (checked: boolean) => void;
        onSkip: () => void;
        onStartTutorial: () => void;
        open: boolean;
    }
    Index

    Properties

    dontShowAgain: boolean

    Whether the "don't show again" checkbox is checked.

    onDontShowAgainChange: (checked: boolean) => void

    Called when the "don't show again" checkbox changes.

    onSkip: () => void

    Called when the user skips the tutorial suggestion.

    onStartTutorial: () => void

    Called when the user chooses to start the tutorial.

    open: boolean

    Whether the dialog is visible.