@forge/cli-shared
8.24.08.24.0-experimental-04cc2b9
out/tunnel/tunnel-options.d.ts~
out/tunnel/tunnel-options.d.tsModified+2−2
Index: package/out/tunnel/tunnel-options.d.ts
===================================================================
--- package/out/tunnel/tunnel-options.d.ts
+++ package/out/tunnel/tunnel-options.d.ts
@@ -1,15 +1,15 @@
import { Services } from '@forge/manifest';
-export declare type TunnelCommandOptions = {
+export type TunnelCommandOptions = {
debug?: boolean;
debugFunctionHandlers?: string[];
debugStartingPort: string;
environment?: string;
verify?: boolean;
url?: string;
localPort?: number;
};
-export declare type TunnelOptions = Omit<TunnelCommandOptions, 'debugStartingPort'> & {
+export type TunnelOptions = Omit<TunnelCommandOptions, 'debugStartingPort'> & {
debugStartingPort: number;
assistantName?: string | null;
containersDockerComposeFiles?: Record<string, string>;
};