@dapplets/dapplet-extension
Version:
The Bridge to the Augmented Web.
19 lines (18 loc) • 512 B
TypeScript
import { ModuleTypes } from '../../common/constants';
import Base from '../../common/models/base';
import { StorageRef } from '../../common/types';
export default class ModuleInfo extends Base {
getId: () => string;
registryUrl: string;
name: string;
type: ModuleTypes;
title: string;
description: string;
author: string;
image?: StorageRef;
metadata?: StorageRef;
icon?: StorageRef;
interfaces: string[];
contextIds: string[];
isUnderConstruction: boolean;
}