penguins-eggs
Version:
A remaster system tool, compatible with Almalinux, Alpine, Arch, Debian, Devuan, Fedora, Manjaro, Opensuse, Ubuntu and derivatives
33 lines (32 loc) • 839 B
TypeScript
/**
* ./src/classes/incubation/distros/arch.ts
* penguins-eggs v.25.7.x / ecmascript 2020
* author: Piero Proietti
* email: piero.proietti@gmail.com
* license: MIT
*/
import { IDistro, IInstaller, IRemix } from '../../../interfaces/index.js';
/**
*
*/
export declare class Archlinux {
distro: IDistro;
installer: IInstaller;
isClone: boolean;
release: boolean;
remix: IRemix;
theme: string;
user_opt: string;
verbose: boolean;
/**
* @param remix
* @param distro
* @param displaymanager
* @param verbose
*/
constructor(installer: IInstaller, remix: IRemix, distro: IDistro, user_opt: string, release?: boolean, theme?: string, isClone?: boolean, verbose?: boolean);
/**
* locale, partitions, users can come from themes
*/
create(): Promise<void>;
}