Interface IpcBridgeOptions

Represents the configuration options available for the IPC bridge. Allows customization of the IPC socket path and binary execution path.

interface IpcBridgeOptions {
    asClient?: boolean;
    binaryPath?: string;
    socketPath?: string;
}

Properties

asClient?: boolean
binaryPath?: string
socketPath?: string