@shopify/cli-kit
    Preparing search index...

    Interface HookReturnPerTunnelPlugin

    Tunnel Plugins types

    Any plugin that provides tunnel functionality should implement defineProviderand startTunnel

    interface HookReturnPerTunnelPlugin {
        tunnel_provider: {
            options: Record<string, never>;
            pluginReturns: Record<string, { name: string }>;
        };
        tunnel_start: {
            options: { port: number; provider: string };
            pluginReturns: Record<string, Result<TunnelClient, TunnelError>>;
        };
    }

    Hierarchy (View Summary)

    Index

    Properties

    tunnel_provider: {
        options: Record<string, never>;
        pluginReturns: Record<string, { name: string }>;
    }
    tunnel_start: {
        options: { port: number; provider: string };
        pluginReturns: Record<string, Result<TunnelClient, TunnelError>>;
    }