@bader-nasser/pdftools
Version:
PDF tools to manipulate and process PDF files
11 lines (10 loc) • 540 B
TypeScript
import { Command } from '@oclif/core';
export declare abstract class BaseCommand extends Command {
static baseFlags: {
'dry-run': import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>;
silent: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>;
};
protected execute(command: string, args: readonly string[] | undefined, dryRun: boolean): Promise<void>;
protected ensureDirExists(filePath: string): Promise<void>;
protected logger(message: string, silent: boolean): void;
}