UNPKG

balena-cli

Version:

The official balena Command Line Interface

11 lines (10 loc) 392 B
import type { SshRemoteCommandOpts } from '../ssh'; export interface DeviceSSHOpts extends SshRemoteCommandOpts { forceTTY?: boolean; service?: string; } export declare function getContainerIdForService(opts: SshRemoteCommandOpts & { service: string; deviceUuid?: string; }): Promise<string>; export declare function performLocalDeviceSSH(opts: DeviceSSHOpts): Promise<void>;