UNPKG

@onboardbase/cli

Version:

[![Version](https://img.shields.io/npm/v/@onboardbase/cli.svg)](https://www.npmjs.com/package/@onboardbase/cli) [![Downloads/week](https://img.shields.io/npm/dw/@onboardbase/cli.svg)](https://www.npmjs.com/package/@onboardbase/cli) [![License](https://img

22 lines (21 loc) 532 B
/// <reference types="node" /> import { EventEmitter } from "events"; interface IOptions { remote_ip?: string; remote_host?: string; remote_port?: number; local_host?: string; local_port?: number; local_https?: string; allow_invalid_cert?: string; captureRejections?: boolean | undefined; local_cert: string; local_key: string; local_ca: string; } export default class TunnelCluster extends EventEmitter { private opts; constructor(opts: IOptions); open(): void; } export {};