penguins-eggs
Version:
A remaster system tool, compatible with Arch, Debian, Devuan, Ubuntu and others
19 lines (18 loc) • 576 B
TypeScript
/**
* ./src/classes/ovary.d/make-squashfs.ts
* penguins-eggs v.10.0.0 / ecmascript 2020
* author: Piero Proietti
* email: piero.proietti@gmail.com
* license: MIT
*/
import Ovary from '../ovary.js';
/**
* squashFs: crea in live filesystem.squashfs
*/
export declare function makeSquashfs(this: Ovary, scriptOnly?: boolean, unsecure?: boolean): Promise<string>;
/**
* Add or remove exclusion
* @param add {boolean} true = add, false remove
* @param exclusion {string} path to add/remove
*/
export declare function addExclusion(this: Ovary, exclusion: string): void;