@jellyfin/sdk
    Preparing search index...

    Interface IPlugin

    Defines the MediaBrowser.Common.Plugins.IPlugin.

    interface IPlugin {
        AssemblyFilePath?: string | null;
        CanUninstall?: boolean;
        DataFolderPath?: string | null;
        Description?: string | null;
        Id?: string;
        Name?: string | null;
        Version?: string | null;
    }
    Index

    Properties

    AssemblyFilePath?: string | null

    Gets the path to the assembly file.

    CanUninstall?: boolean

    Gets a value indicating whether the plugin can be uninstalled.

    DataFolderPath?: string | null

    Gets the full path to the data folder, where the plugin can store any miscellaneous files needed.

    Description?: string | null

    Gets the Description.

    Id?: string

    Gets the unique id.

    Name?: string | null

    Gets the name of the plugin.

    Version?: string | null

    Gets the plugin version.