firmament-vita
Version:
Firmament module for automating VITA tasks
11 lines (10 loc) • 370 B
TypeScript
import { DecryptAndUnTarOptions } from "../../interfaces/vita-options-results";
export declare class DecryptAndUnTarOptionsImpl implements DecryptAndUnTarOptions {
encryptedFiles: string[];
foldersOfEncryptedFiles: string[];
encryptedFilePattern: RegExp;
targetFolder: string;
password: string;
fromArgv(argv: any): void;
validate(): void;
}