frontend
    Preparing search index...

    Props for the TutorialProvider component.

    interface TutorialProviderProps {
        children: ReactNode;
        config: TutorialConfig;
        translateMessage?: (key: string) => string;
    }
    Index

    Properties

    children: ReactNode

    Child elements that can access the tutorial context.

    Tutorial configuration with game name and steps.

    translateMessage?: (key: string) => string

    Optional function to translate step messageKey values. Defaults to identity.