UNPKG

penguins-eggs

Version:

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

27 lines (26 loc) 578 B
/** * ./src/classes/tools.ts * penguins-eggs v.25.7.x / ecmascript 2020 * author: Piero Proietti * email: piero.proietti@gmail.com * license: MIT */ interface IEggsConfigTools { localPathIso: string; remoteHost: string; remotePathIso: string; remotePathPackages: string; remoteUser: string; } /** * Utils: general porpourse utils * @remarks all the utilities */ export default class Tools { config: IEggsConfigTools; snapshot_dir: string; snapshot_name: string; tools_yaml: string; loadSettings(): Promise<boolean>; } export {};