UNPKG

penguins-eggs

Version:

A remaster system tool, compatible with Almalinux, Alpine, Arch, Debian, Devuan, Fedora, Manjaro, Opensuse, Ubuntu and derivatives

36 lines (35 loc) 1.02 kB
/** * ./src/commands/config.ts * penguins-eggs v.25.7.x / ecmascript 2020 * author: Piero Proietti * email: piero.proietti@gmail.com * license: MIT */ import { Command } from '@oclif/core'; import { IInstall } from '../interfaces/index.js'; /** * */ export default class Config extends Command { static description: string; static examples: string[]; static flags: { clean: import("@oclif/core/interfaces").BooleanFlag<boolean>; help: import("@oclif/core/interfaces").BooleanFlag<void>; nointeractive: import("@oclif/core/interfaces").BooleanFlag<boolean>; verbose: import("@oclif/core/interfaces").BooleanFlag<boolean>; }; /** * * @param i * @param verbose */ static install(i: IInstall, nointeractive?: boolean, verbose?: boolean): Promise<void>; /** * * * @param verbose */ static thatWeNeed(nointeractive?: boolean, verbose?: boolean, homecrypt?: boolean): Promise<IInstall>; run(): Promise<void>; }