@dapplets/dapplet-extension
Version:
The Bridge to the Augmented Web.
25 lines (24 loc) • 618 B
TypeScript
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;
}