@karmaniverous/jeeves
    Preparing search index...

    Interface PluginInstallRecord

    Options for writing a plugin install provenance record.

    interface PluginInstallRecord {
        installedAt?: string;
        installPath: string;
        version?: string;
    }
    Index

    Properties

    installedAt?: string

    ISO timestamp of installation. Defaults to new Date().toISOString().

    installPath: string

    Absolute path to the extensions directory where the plugin was installed.

    version?: string

    Plugin version string from package.json, if known.