It is used to define the menus of the application.

interface PluginInfoType {
    author: string;
    description: string;
    id: string;
    license: string;
    name: string;
    version: string;
}

Properties

author: string

The author of the plugin.

description: string

The describe of the plugin.

id: string

The plugin id.The unique identifier of the plugin. Must be consistent with the id of manifest.json

license: string

The license of the plugin.

name: string

The name of plugin. Must be consistent with the name of manifest.json

version: string

The version of the plugin.