UXP Toolkit
    Preparing search index...

    Interface UxpPluginInfo

    This is a public object which is passed as parameter in plugin.create() and plugin.destroy() entrypoint events.

    interface UxpPluginInfo {
        id: string;
        isFirstParty: () => void;
        manifest: never;
        name: string;
        version: string;
    }
    Index

    Properties

    id: string

    Get plugin ID.

    isFirstParty: () => void

    Check if the plugin is First Party Plugin.

    manifest: never

    Get plugin manifest.

    name: string

    Get plugin name.

    version: string

    Get plugin version.