H5P NodeJS Library
    Preparing search index...

    This objects carries information about content types that the user can select from the H5P Hub. The optional properties don't have to be set if a content type is only installed locally.

    interface IHubContentType {
        categories?: string[];
        createdAt?: number;
        description: string;
        example?: string;
        h5pMajorVersion?: number;
        h5pMinorVersion?: number;
        icon: string;
        isRecommended?: boolean;
        keywords?: string[];
        license?: any;
        machineName: string;
        majorVersion: number;
        minorVersion: number;
        owner: string;
        patchVersion: number;
        popularity?: number;
        screenshots?: any;
        summary?: string;
        title: string;
        tutorial?: string;
        updatedAt?: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

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