Backstage
    Preparing search index...

    Information about the plugin.

    This interface is intended to be extended via module augmentation in order to add fields that are specific to each project.

    For example, one might add a slackChannel field that is read from the opaque manifest file.

    See the options for createApp for more information about how to customize the parsing of manifest files.

    interface FrontendPluginInfo {
        description?: string;
        links?: { title: string; url: string }[];
        ownerEntityRefs?: string[];
        packageName?: string;
        version?: string;
    }
    Index

    Properties

    description?: string

    As short description of the plugin, typically the description field in package.json.

    links?: { title: string; url: string }[]

    Links related to the plugin.

    ownerEntityRefs?: string[]

    The owner entity references of the plugin.

    packageName?: string

    The name of the package that implements the plugin.

    version?: string

    The version of the plugin, typically the version of the package.json file.