/** * ./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; } export {};