Interface TutorialOptions

interface TutorialOptions {
    assetFiles?: Record<string, string>;
    autoexpandStep?: boolean;
    customTs?: string;
    globalBlockConfig?: TutorialBlockConfig;
    globalValidationConfig?: CodeValidationConfig;
    jres?: string;
    language?: string;
    mergeCarryoverCode?: boolean;
    mergeHeaderId?: string;
    metadata?: TutorialMetadata;
    simTheme?: Partial<PackageConfig>;
    templateCode?: string;
    templateLoaded?: boolean;
    tutorial?: string;
    tutorialActivityInfo?: TutorialActivityInfo[];
    tutorialCode?: string[];
    tutorialHintCounter?: number;
    tutorialMd?: string;
    tutorialName?: string;
    tutorialReady?: boolean;
    tutorialRecipe?: boolean;
    tutorialReportId?: string;
    tutorialStep?: number;
    tutorialStepExpanded?: boolean;
    tutorialStepInfo?: TutorialStepInfo[];
}

Properties

assetFiles?: Record<string, string>
autoexpandStep?: boolean
customTs?: string
globalBlockConfig?: TutorialBlockConfig
globalValidationConfig?: CodeValidationConfig
jres?: string
language?: string
mergeCarryoverCode?: boolean
mergeHeaderId?: string
metadata?: TutorialMetadata
simTheme?: Partial<PackageConfig>
templateCode?: string
templateLoaded?: boolean
tutorial?: string
tutorialActivityInfo?: TutorialActivityInfo[]
tutorialCode?: string[]
tutorialHintCounter?: number
tutorialMd?: string
tutorialName?: string
tutorialReady?: boolean
tutorialRecipe?: boolean
tutorialReportId?: string
tutorialStep?: number
tutorialStepExpanded?: boolean
tutorialStepInfo?: TutorialStepInfo[]