penguins-eggs
Version:
A remaster system tool, compatible with Arch, Debian, Devuan, Ubuntu and others
36 lines (35 loc) • 1.02 kB
TypeScript
/**
* ./src/commands/config.ts
* penguins-eggs v.10.0.0 / 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, cryptedclone?: boolean): Promise<IInstall>;
run(): Promise<void>;
}