npm package diff

Package: @forge/tunnel

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

File: package/out/command/start-tunnel-command.d.ts

Index: package/out/command/start-tunnel-command.d.ts
===================================================================
--- package/out/command/start-tunnel-command.d.ts
+++ package/out/command/start-tunnel-command.d.ts
@@ -14,9 +14,10 @@
 export interface StartTunnelResult {
     localPort: number;
     tunnelDefinitions: TunnelDefinitions;
     inspectorAddress?: string;
-    devServers: DevelopmentServer[];
+    faasServer: DevelopmentServer;
+    uiServers: DevelopmentServer[];
     stopFunction(): Promise<void>;
     reloadSandboxes(bundledCode: BundlerOutput, tunnelOptions: TunnelOptions): Promise<void>;
 }
 export declare class StartTunnelCommand {