import { ModuleTypes } from '../../common/constants';
import { StorageRef } from '../../common/types';
export default class ManifestDTO {
    name: string;
    type: ModuleTypes;
    title: string;
    description: string;
    author: string;
    icon: StorageRef;
    isActive: boolean;
    isActionHandler: boolean;
    isHomeHandler: boolean;
    activeVersion?: string | null;
    lastVersion?: string | null;
    order: number;
    hostnames: string[];
    sourceRegistry: {
        url: string;
        isDev: boolean;
    };
    available: boolean;
    isUnderConstruction: boolean;
    isMyDapplet: boolean;
}
