H5P NodeJS Library
    Preparing search index...

    Carries information about the local installation status of a content type.

    interface IHubContentTypeWithLocalInfo {
        canInstall: boolean;
        categories?: string[];
        createdAt?: number;
        description: string;
        example?: string;
        h5pMajorVersion?: number;
        h5pMinorVersion?: number;
        icon: string;
        installed: boolean;
        isRecommended?: boolean;
        isUpToDate: boolean;
        keywords?: string[];
        license?: any;
        localMajorVersion: number;
        localMinorVersion: number;
        localPatchVersion: number;
        machineName: string;
        majorVersion: number;
        minorVersion: number;
        owner: string;
        patchVersion: number;
        popularity?: number;
        restricted: boolean;
        screenshots?: any;
        summary?: string;
        title: string;
        tutorial?: string;
        updatedAt?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    canInstall: boolean
    categories?: string[]
    createdAt?: number
    description: string
    example?: string
    h5pMajorVersion?: number
    h5pMinorVersion?: number
    icon: string
    installed: boolean
    isRecommended?: boolean
    isUpToDate: boolean
    keywords?: string[]
    license?: any
    localMajorVersion: number
    localMinorVersion: number
    localPatchVersion: number
    machineName: string
    majorVersion: number
    minorVersion: number
    owner: string
    patchVersion: number
    popularity?: number
    restricted: boolean
    screenshots?: any
    summary?: string
    title: string
    tutorial?: string
    updatedAt?: number