diff --git a/src/shared/types.d.ts b/src/shared/types.d.ts index df64397..4b4f3f9 100644 --- a/src/shared/types.d.ts +++ b/src/shared/types.d.ts @@ -92,8 +92,16 @@ export interface Trays { } export interface PrinterConfig { + Preset?: { + Duplex?: string + Color?: string + Resolution?: string + Paper?: string + Tray?: string + }, Collate?: boolean Color?: boolean + ColorSupported?: boolean Driver?: string DuplexMode?: number DuplexSupported?: boolean @@ -106,6 +114,7 @@ export interface PrinterConfig { OrientationsSupportedId?: Array PaperFormats?: Array Resolutions?: Array + DefaultResolution?: string TPUID?: number Trays?: Array }