import { PrintResult } from './print-result.interface'; /** * Print Adapter Interface * Abstracts print operations for executing print commands */ export interface IPrintAdapter { /** * Executes a print command * @param command - The complete print command to execute (e.g., "lpr -S server -P port file") * @returns PrintResult with success status and any error details */ executePrintCommand(command: string): Promise; } //# sourceMappingURL=iprint.adapter.d.ts.map