balena-cli
Version:
The official balena Command Line Interface
14 lines (13 loc) • 573 B
TypeScript
import { Command } from '@oclif/core';
import type { BalenaSDK } from 'balena-sdk';
export default class DeviceStopServiceCmd extends Command {
static description: string;
static examples: string[];
static args: {
uuid: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>;
service: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>;
};
static authenticated: boolean;
run(): Promise<void>;
stopServices(balena: BalenaSDK, deviceUuid: string, serviceNames: string[]): Promise<void>;
}