h5p-types
    Preparing search index...

    Type Alias H5PIntegrationObject

    type H5PIntegrationObject = {
        ajax: { contentUserData: string; setFinished: string };
        baseUrl: string;
        contents: Record<`cid-${H5PContentId}`, H5PContentData>;
        core: { scripts: string[]; styles: string[] };
        crossorigin: unknown;
        crossoriginCacheBuster: unknown;
        crossoriginRegex?: unknown;
        editor?: H5PEditorConfig;
        fullscreenDisabled?: boolean;
        hubIsEnabled: boolean;
        l10n: Record<string, Record<string, string>>;
        libraryConfig: unknown;
        libraryDirectories?: Record<string, unknown>;
        libraryUrl: string;
        pluginCacheBuster: string;
        postUserStatistics: boolean;
        reportingIsEnabled: boolean;
        saveFreq: false | number;
        siteUrl?: string;
        theme?: { density?: "large" | "medium" | "small" };
        url: string;
        urlLibraries?: string;
        user?: {
            canToggleViewOthersH5PContents?: number;
            id: number;
            mail: string;
            name: string;
        };
    }
    Index
    ajax: { contentUserData: string; setFinished: string }
    baseUrl: string
    contents: Record<`cid-${H5PContentId}`, H5PContentData>
    core: { scripts: string[]; styles: string[] }
    crossorigin: unknown
    crossoriginCacheBuster: unknown
    crossoriginRegex?: unknown
    editor?: H5PEditorConfig
    fullscreenDisabled?: boolean
    hubIsEnabled: boolean
    l10n: Record<string, Record<string, string>>
    libraryConfig: unknown
    libraryDirectories?: Record<string, unknown>
    libraryUrl: string
    pluginCacheBuster: string
    postUserStatistics: boolean
    reportingIsEnabled: boolean

    True if Enable LRS dependent content types is set to true, else false

    saveFreq: false | number
    siteUrl?: string
    theme?: { density?: "large" | "medium" | "small" }
    url: string
    urlLibraries?: string
    user?: {
        canToggleViewOthersH5PContents?: number;
        id: number;
        mail: string;
        name: string;
    }