forked from La-source/pos-printer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
602 lines (492 loc) · 9.33 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
// Type definitions for pos-printer
// Project: pos-printer
// Definitions by: Philippe Bauwens
/**
* Param for Printer constructor
*/
interface ConfigPrinter {
/**
* Driver for printer
*/
driver: Driver;
/**
* Interface for printer (network, serial,
*/
interface: Interface;
/**
* Width printable (number normal char)
*/
width?: number;
}
/**
* Printer
*/
export class Printer {
readonly driver: Driver;
readonly interface: Interface;
readonly width: number;
constructor(config: ConfigPrinter);
/**
* Printer name
*/
get name(): string;
/**
* Communication with printer is open
*/
get isOpen(): boolean;
/**
* Open communication with printer
*/
open(): Promise<void>;
/**
* Close communication with printer
*/
close(): void;
/**
* Get status printer
*/
status(): Promise<Status>;
/**
* Create new printing task for this printer
*/
createPrinting(): Printing;
/**
* Execute printing task
* @param printing
*/
execute(printing: Printing): Promise<void>;
}
/**
* Printing task
*/
export class Printing {
readonly printer: Printer;
readonly driver: Driver;
constructor(printer: Printer);
/**
* Fetch status printer
*/
status(): this;
/**
* Print text
* @param text
*/
print(text: string): this;
/**
* Print vertical tab
*/
verticalTab(): this;
/**
* Clear printer buffer
*/
init(): this;
// TODO logo
/**
* Emit beep on internal buzzer
*/
beep(): this;
/**
* Cut paper
*/
cut(): this;
/**
* Cut paper partially
*/
partialCut(): this;
/**
* Open cash drawer
*/
cashDrawer(): this;
/**
* Enable or disable bold text printing
* @param enabled
*/
bold(enabled: boolean): this;
/**
* Enable or disable underline text printing
* @param enabled
*/
underline(enabled: boolean): this;
/**
* Enable or disable underline thick text printing
* @param enabled
*/
underlineThick(enabled: boolean): this;
/**
* Enable or disable upside down text printing
* @param enabled
*/
upsideDown(enabled: boolean): this;
/**
* Enable or disable invert text printing
* @param enabled
*/
invert(enabled: boolean): this;
// TODO italic
/**
* Enable center align printing
*/
alignCenter(): this;
/**
* Enable left align printing
*/
alignLeft(): this;
/**
* Enable right align printing
*/
alignRight(): this;
/**
* Select font A
*/
fontA(): this;
/**
* Select font B
*/
fontB(): this;
// TODO small
// TODO choice size (0-8)
/**
* Select normal size printing
*/
sizeNormal(): this;
/**
* Select double height size printing
*/
sizeDoubleHeight(): this;
/**
* Select double width size printing
*/
sizeDoubleWidth(): this;
/**
* Select quad area size printing
*/
sizeQuadArea(): this;
/**
* Get text data printing
*/
getText(): string;
/**
* Get raw data printing
*/
getRaw(): Buffer;
/**
* Append data in printing task
* @param data
*/
append(data: string | Buffer): this;
}
/**
* Printer status
*/
interface PrinterStatus {
/**
* Printer is offline
*/
offline: boolean;
}
/**
* Offline printer status
*/
interface OfflineStatus {
/**
* Cover is open
*/
cover: boolean;
/**
* Paper is feed
*/
paperFeed: boolean;
/**
* End of paper
*/
paperEnd: boolean;
/**
* Printer is on error
*/
error: boolean;
}
/**
* Error printer status
*/
interface ErrorStatus {
/**
* Cutter error
*/
cutterError: boolean;
/**
* Printer is on error not recoverable automatically
*/
unrecoverableError: boolean;
/**
* Printer is on error recoverable automatically
*/
autoRecoverableError: boolean;
}
/**
* Paper roll printer status
*/
interface PaperRollStatus {
/**
* Paper is low
*/
paperLow: boolean;
/**
* Paper is not present
*/
paperNotPresent: boolean;
}
/**
* Status global printer
*/
export interface Status extends PrinterStatus, OfflineStatus, ErrorStatus, PaperRollStatus {}
/**
* Driver for communication with printer
*/
export class Driver {
/**
* Transform printer status buffer from printer to PrinterStatus
* @param status
*/
getPrinterStatus(status: Buffer): PrinterStatus;
/**
* Transform offline status buffer from printer to OfflineStatus
* @param status
*/
getOfflineStatus(status: Buffer): OfflineStatus;
/**
* Transform error status buffer from printer to ErrorStatus
* @param status
*/
getErrorStatus(status: Buffer): ErrorStatus;
/**
* Transform paper roll status buffer from printer to PaperRoll
* @param status
*/
getPaperRollStatus(status: Buffer): PaperRollStatus;
/**
* Get esc code for get printer status
*/
get printerStatus(): Buffer;
/**
* Get esc code for get offline status
*/
get offLineStatus(): Buffer;
/**
* Get esc code for get error status
*/
get errorStatus(): Buffer;
/**
* Get esc code for get paper roll status
*/
get paperRollStatus(): Buffer;
/**
* Get esc code for initialize printer
*/
get init(): Buffer;
/**
* Get esc code for vertical tab
*/
get verticalTab(): Buffer;
/**
* Get esc code for beep internal
*/
get beep(): Buffer;
/**
* Get esc code for cut paper
*/
get cut(): Buffer;
/**
* Get esc code for partial cut paper
*/
get partialCut(): Buffer;
/**
* Get esc code for open drawer
*/
get cashDrawer(): Buffer;
/**
* Get esc code for enable bold text
*/
get boldOn(): Buffer;
/**
* Get esc code for disable bold text
*/
get boldOff(): Buffer;
/**
* Get esc code for enable underline text
*/
get underlineOn(): Buffer;
/**
* Get esc code for disable underline text
*/
get underlineOff(): Buffer;
/**
* Get esc code for enable underline thick text
*/
get underlineThickOn(): Buffer;
/**
* Get esc code for disable underline thick text
*/
get underlineThickOff(): Buffer;
/**
* Get esc code for enable upside thick text
*/
get upsideDownOn(): Buffer;
/**
* Get esc code for disable upside thick text
*/
get upsideDownOff(): Buffer;
/**
* Get esc code for enable invert text
*/
get invertOn(): Buffer;
/**
* Get esc code for disable invert text
*/
get invertOff(): Buffer;
/**
* Get esc code for align center text
*/
get alignCenter(): Buffer;
/**
* Get esc code for align left text
*/
get alignLeft(): Buffer;
/**
* Get esc code for align right text
*/
get alignRight(): Buffer;
/**
* Get esc code for choice font A
*/
get fontA(): Buffer;
/**
* Get esc code for choice font B
*/
get fontB(): Buffer;
/**
* Get esc code for select normal size
*/
get sizeNormal(): Buffer;
/**
* Get esc code for select double height size
*/
get sizeDoubleHeight(): Buffer;
/**
* Get esc code for select double width size
*/
get sizeDoubleWidth(): Buffer;
/**
* Get esc code for select quad area size
*/
get sizeQuadArea(): Buffer;
/**
* Define characterSet for printer
* @param characterSet
*/
setCharacterSet(characterSet): Buffer;
/**
* Convert buffer status to status number
* @param status
*/
private convertStatus(status: Buffer): number;
}
export class EpsonDriver extends Driver {
constructor(escapeCode?: object);
}
export class StarDriver extends Driver {
}
/**
* Configuration for printer interface
*/
interface ConfigInterface {
/**
* Timeout printer
*/
timeout?: number;
}
/**
* Interface printer
*/
export class Interface {
/**
* Timeout of printer
*/
readonly timeout: number;
/**
* Interval check status (for server)
*/
readonly intervalCheckStatus: number;
constructor(config?: ConfigInterface, overwriteConfig?: ConfigInterface);
/**
* Interface name (COM5, 192.168.1.100, ...)
*/
get name(): string;
/**
* Is interface open for communication with printer
*/
get isOpen(): boolean;
/**
* Open interface printer
*/
open(): Promise<void>;
/**
* Close interface printer
*/
close(): void | Promise<void>;
/**
* Read data from printer
*/
read(): Promise<Buffer>;
/**
* Write data to printer
* @param data
*/
write(data: Buffer): Promise<void> | void;
static discover(): Promise<Interface[]>;
}
/**
* Network Interface
*/
export class NetworkInterface extends Interface {
/**
*
* @param host Host printer (exemple 192.168.1.100)
* @param port Port printer (default 9100)
* @param config
*/
constructor(host: string, port?: number, config?: ConfigInterface);
}
/**
* Serial interface
*/
export class SerialInterface extends Interface {
/**
*
* @param port Port printer (exemple COM3 or /dev/usb/lp0)
* @param config
*/
constructor(port: string, config?: ConfigInterface);
}
/**
* Usb Interface
*/
export class UsbInterface extends Interface {
/**
*
* @param vid Vendor Id
* @param pid Product Id
* @param config
*/
constructor(vid: number, pid: number, config?: ConfigInterface);
}
/**
* Bluetooth interface
*/
export class BluetoothInterface extends Interface {
/**
*
* @param address Bluetooth printer address
* @param config
*/
constructor(address: string, config?: ConfigInterface);
}