UNPKG

penguins-eggs

Version:

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

42 lines (41 loc) 1.07 kB
/** * src/krill/classes/krill-enums.ts * penguins-eggs v.10.0.0 / ecmascript 2020 * author: Piero Proietti * email: piero.proietti@gmail.com * license: MIT */ /** * */ export var InstallationMode; (function (InstallationMode) { InstallationMode["EraseDisk"] = "Erase disk"; InstallationMode["Luks"] = "Erase disk/Encrypted"; InstallationMode["Replace"] = "Replace partition"; })(InstallationMode || (InstallationMode = {})); /** * */ export var SwapChoice; (function (SwapChoice) { SwapChoice["None"] = "none"; SwapChoice["Small"] = "small"; SwapChoice["Suspend"] = "suspend"; SwapChoice["File"] = "file"; })(SwapChoice || (SwapChoice = {})); export var Bios; (function (Bios) { Bios["Legacy"] = "legacy"; Bios["EFI"] = "efi"; })(Bios || (Bios = {})); export var FsType; (function (FsType) { FsType["ext2"] = "ext2"; FsType["ext3"] = "ext3"; FsType["ext4"] = "ext4"; FsType["btrfs"] = "btrfs"; FsType["xfs"] = "xfs"; FsType["zfs"] = "zfs"; FsType["ntfs"] = "ntfs"; })(FsType || (FsType = {}));