UNPKG

penguins-eggs

Version:

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

32 lines (31 loc) 800 B
/** * ./src/classes/incubation/distros/jessie.ts * penguins-eggs v.10.0.0 / ecmascript 2020 * author: Piero Proietti * email: piero.proietti@gmail.com * license: MIT */ import { IInstaller } from '../../../interfaces/i-installer.js'; import { IDistro, IRemix } from '../../../interfaces/index.js'; /** * */ export declare class Jessie { distro: IDistro; installer: IInstaller; release: boolean; remix: IRemix; 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, verbose?: boolean); /** * partitions can come from themes */ create(): Promise<void>; }