/** * Print Result Interface * Represents the result of a print operation */ export interface PrintResult { success: boolean; command: string; error?: { message: string; code?: string; }; } //# sourceMappingURL=print-result.interface.d.ts.map