hdckit
Version:
A pure Node.js client for the OpenHarmony Device Connector
13 lines (12 loc) • 376 B
TypeScript
import Command from '../Command';
import { IForward } from './forward';
export declare class ReversePortCommand extends Command<void> {
execute(remote: string, local: string): Promise<void>;
}
export declare class ListReversesCommand extends Command<IForward[]> {
execute(): Promise<{
target: string;
local: string;
remote: string;
}[]>;
}