UNPKG

@bader-nasser/pdftools

Version:

PDF tools to manipulate and process PDF files

19 lines (18 loc) 734 B
import { BaseCommandWithCompression } from '../../base-command-with-compression.js'; export default class Merge extends BaseCommandWithCompression { static aliases: string[]; static description: string; static examples: { description: string; command: string; }[]; static strict: boolean; static args: { input: import("@oclif/core/lib/interfaces/parser.js").Arg<string, Record<string, unknown>>; }; static flags: { output: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>; keep: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>; }; run(): Promise<void>; }