UNPKG

penguins-eggs

Version:

A remaster system tool, compatible with Arch, Debian, Devuan, Ubuntu and others

33 lines (32 loc) 831 B
/** * ./src/classes/incubation/distros/bionic.ts * penguins-eggs v.10.0.0 / ecmascript 2020 * author: Piero Proietti * email: piero.proietti@gmail.com * license: MIT */ import { IDistro, IInstaller, IRemix } from '../../../interfaces/index.js'; /** * */ export declare class Bionic { distro: IDistro; installer: IInstaller; isClone: boolean; release: boolean; remix: IRemix; theme: string; user_opt: string; verbose: boolean; /** * @param remix * @param distro * @param release * @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>; }