penguins-eggs
Version:
A remaster system tool, compatible with Arch, Debian, Devuan, Ubuntu and others
34 lines (33 loc) • 662 B
TypeScript
/**
* ./src/interfaces/i-settings.ts
* penguins-eggs v.10.0.0 / 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 {};