UNPKG

balena-cli

Version:

The official balena Command Line Interface

47 lines (46 loc) 2.25 kB
import { Command } from '@oclif/core'; export default class DeviceNoteCmd extends Command { static aliases: string[]; static deprecateAliases: boolean; static description: string; static examples: string[]; static args: { note: import("@oclif/core/lib/interfaces").Arg<string | undefined, Record<string, unknown>>; }; static flags: { device: { name: string; char?: import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/interfaces").AlphabetUppercase; summary?: string; description?: string; helpLabel?: string; helpGroup?: string; env?: string; hidden?: boolean; required?: boolean; dependsOn?: string[]; exclusive: string[]; exactlyOne?: string[]; relationships?: import("@oclif/core/lib/interfaces/parser").Relationship[]; deprecated?: true | import("@oclif/core/lib/interfaces").Deprecation; aliases?: string[]; charAliases?: (import("@oclif/core/lib/interfaces").AlphabetLowercase | import("@oclif/core/lib/interfaces").AlphabetUppercase)[]; deprecateAliases?: boolean; noCacheDefault?: boolean; type: "option"; helpValue?: string | string[]; options?: readonly string[]; multiple?: boolean; multipleNonGreedy?: boolean; delimiter?: ","; allowStdin?: boolean | "only"; parse: import("@oclif/core/lib/interfaces/parser").FlagParser<string | undefined, string, import("@oclif/core/lib/interfaces").CustomOptions>; defaultHelp?: import("@oclif/core/lib/interfaces/parser").FlagDefaultHelp<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>; input: string[]; default?: import("@oclif/core/lib/interfaces/parser").FlagDefault<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>; }; dev: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces").CustomOptions>; }; static authenticated: boolean; run(): Promise<void>; }