@forge/cli-shared
9.0.0-next.79.0.0-next.8
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,6 +1,6 @@
import { Services } from '@forge/manifest';
-export declare type TunnelCommandOptions = {
+export type TunnelCommandOptions = {
debug?: boolean;
debugFunctionHandlers?: string[];
debugStartingPort: string;
debugHost?: string;
@@ -8,9 +8,9 @@
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>;
};