@forge/tunnel

5.5.0-next.135.5.0-next.14
out/command/start-tunnel-command.d.ts
out/command/start-tunnel-command.d.ts
+2−1
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 {