UNPKG

penguins-eggs

Version:

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

34 lines (33 loc) 662 B
/** * ./src/interfaces/i-settings.ts * penguins-eggs v.25.7.x / ecmascript 2020 * author: Piero Proietti * email: piero.proietti@gmail.com * license: MIT */ interface Iinstance { config: string; id: string; moduce: string; } /** * */ export interface ISettings { branding: string; 'disable-cancel': boolean; 'disable-cancel-during-exec': boolean; 'dont-chroot': boolean; instances: [instance: Iinstance]; 'modules-search': string[]; 'oem-setup': boolean; 'prompt-install': boolean; sequence: [{ show: string[]; }, { exec: string[]; }, { show: string[]; }]; } export {};