UNPKG

balena-cli

Version:

The official balena Command Line Interface

12 lines (11 loc) 443 B
import { Command } from '@oclif/core'; export default class DevicePinCmd extends Command { static description: string; static examples: string[]; static args: { uuid: import("@oclif/core/lib/interfaces").Arg<string, Record<string, unknown>>; releaseToPinTo: import("@oclif/core/lib/interfaces").Arg<string | undefined, Record<string, unknown>>; }; static authenticated: boolean; run(): Promise<void>; }