@gud/cli
    Preparing search index...

    Type Alias PluginInfo<TMeta>

    PluginInfo: { description?: string; name: string; version?: string } & (
        {} extends TMeta
            ? PluginMetaOption<TMeta>
            : Required<PluginMetaOption<TMeta>>
    )

    Information about a plugin.

    Type Parameters

    • TMeta extends AnyObject = AnyObject

    Type declaration

    • Optionaldescription?: string

      A short description of the plugin to provide context about what the plugin does.

    • name: string

      The name of the plugin.

    • Optionalversion?: string

      The version of the plugin, which can be helpful for debugging or compatibility checks by other plugins or the CLI itself.

      '0.0.0'