penguins-eggs
Version:
A remaster system tool, compatible with Arch, Debian, Devuan, Ubuntu and others
27 lines (26 loc) • 578 B
TypeScript
/**
* ./src/classes/tools.ts
* penguins-eggs v.10.0.0 / ecmascript 2020
* author: Piero Proietti
* email: piero.proietti@gmail.com
* license: MIT
*/
interface IEggsConfigTools {
localPathIso: string;
remoteHost: string;
remotePathPackages: string;
remotePathIso: 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 {};