nx-web-ext - v6.1.0
    Preparing search index...

    Interface WebExtRunner

    interface WebExtRunner {
        registerCleanup(callback: () => void): void;
        runningInfo?: { debuggerPort?: number };
    }
    Index
    runningInfo?: { debuggerPort?: number }

    Connection details for the browser instance, when one is attached.

    • Register a callback to run when the runner shuts down.

      Parameters

      • callback: () => void

        Invoked once the extension stops running.

      Returns void