UNPKG

balena-cli

Version:

The official balena Command Line Interface

17 lines (16 loc) 723 B
import { Command } from '@oclif/core'; import type { BalenaSDK } from 'balena-sdk'; export default class DeviceRestartCmd extends Command { static description: string; static examples: string[]; static args: { uuid: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>; }; static flags: { service: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>; }; static authenticated: boolean; run(): Promise<void>; restartServices(balena: BalenaSDK, deviceUuid: string, serviceNames: string[]): Promise<void>; restartAllServices(balena: BalenaSDK, deviceUuid: string): Promise<void>; }