npm package diff

Package: @forge/tunnel

Versions: 5.5.0-next.13 - 5.5.0-next.14

File: package/out/command/interactors/multi-compiler-watcher.d.ts

Index: package/out/command/interactors/multi-compiler-watcher.d.ts
===================================================================
--- package/out/command/interactors/multi-compiler-watcher.d.ts
+++ package/out/command/interactors/multi-compiler-watcher.d.ts
@@ -1,10 +1,12 @@
 import { BundlerOutput, WatcherMonitor } from '@forge/bundler';
 import { DevelopmentServer, WatchHooks } from '../../servers';
 import { TunnelOptions } from '@forge/cli-shared';
 export declare class MultiCompilerWatcher implements WatcherMonitor {
-    private readonly servers;
-    constructor(servers: DevelopmentServer[]);
+    private readonly faasServer;
+    private readonly uiServers;
+    constructor(faasServer: DevelopmentServer, uiServers: DevelopmentServer[]);
+    allServers(): DevelopmentServer[];
     compileAndWatch({ onChange: { onBuildWillStart, onBuildFinished } }: {
         onChange: WatchHooks;
     }, tunnelOptions?: TunnelOptions): Promise<BundlerOutput>;
     stop(): Promise<void>;