lib-iitc-manager
    Preparing search index...

    Interface Plugin

    Plugin object with full data including code and status.

    interface Plugin {
        addedAt?: number;
        code?: string;
        override?: boolean;
        status?: "on" | "off";
        statusChangedAt?: number;
        uid: string;
        updatedAt?: number;
        user?: boolean;
    }

    Hierarchy (View Summary)

    Index

    Properties

    addedAt?: number

    Unix timestamp of when the external plugin was first added. Only for external plugins.

    code?: string

    Full plugin source code.

    override?: boolean

    Whether this user plugin overrides a built-in plugin.

    status?: "on" | "off"

    Plugin status: 'on' (enabled) or 'off' (disabled).

    statusChangedAt?: number

    Unix timestamp of when the plugin's status (on/off) was last changed.

    uid: string

    Unique identifier (UID) of plugin. Created by lib-iitc-manager.

    updatedAt?: number

    Unix timestamp of when the plugin's code was last updated.

    user?: boolean

    Whether this is a user-installed plugin (vs built-in).