forked from Klemen1337/node-thermal-printer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
node-thermal-printer.d.ts
executable file
·422 lines (368 loc) · 8.16 KB
/
node-thermal-printer.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
// Type definitions for node-thermal-printer 4.1.0
// Project: https://github.com/Klemen1337/node-thermal-printer
// Definitions by: Klemen Kastelic<https://github.com/Klemen1337>
// TypeScript Version: 3.5.2
/**
* Supported printer types are EPSON, TANCA, STAR and DARUMA
*/
declare enum PrinterTypes {
EPSON = "epson",
TANCA = "tanca",
STAR = "star",
DARUMA = "daruma"
}
declare enum BreakLine {
NONE = 'NONE', // No word break
CHARACTER = 'CHARACTER', // Break by characters
WORD = 'WORD' // Break by words
}
declare enum CharacterSet {
PC437_USA = 'PC437_USA',
PC850_MULTILINGUAL = 'PC850_MULTILINGUAL',
PC860_PORTUGUESE = 'PC860_PORTUGUESE',
PC863_CANADIAN_FRENCH = 'PC863_CANADIAN_FRENCH',
PC865_NORDIC = 'PC865_NORDIC',
PC851_GREEK = 'PC851_GREEK',
PC857_TURKISH = 'PC857_TURKISH',
PC737_GREEK = 'PC737_GREEK',
ISO8859_7_GREEK = 'ISO8859_7_GREEK',
WPC1252 = 'WPC1252',
PC866_CYRILLIC2 = 'PC866_CYRILLIC2',
PC852_LATIN2 = 'PC852_LATIN2',
SLOVENIA = 'SLOVENIA',
PC858_EURO = 'PC858_EURO',
WPC775_BALTIC_RIM = 'WPC775_BALTIC_RIM',
PC855_CYRILLIC = 'PC855_CYRILLIC',
PC861_ICELANDIC = 'PC861_ICELANDIC',
PC862_HEBREW = 'PC862_HEBREW',
PC864_ARABIC = 'PC864_ARABIC',
PC869_GREEK = 'PC869_GREEK',
ISO8859_2_LATIN2 = 'ISO8859_2_LATIN2',
ISO8859_15_LATIN9 = 'ISO8859_15_LATIN9',
PC1125_UKRANIAN = 'PC1125_UKRANIAN',
WPC1250_LATIN2 = 'WPC1250_LATIN2',
WPC1251_CYRILLIC = 'WPC1251_CYRILLIC',
WPC1253_GREEK = 'WPC1253_GREEK',
WPC1254_TURKISH = 'WPC1254_TURKISH',
WPC1255_HEBREW = 'WPC1255_HEBREW',
WPC1256_ARABIC = 'WPC1256_ARABIC',
WPC1257_BALTIC_RIM = 'WPC1257_BALTIC_RIM',
WPC1258_VIETNAMESE = 'WPC1258_VIETNAMESE',
KZ1048_KAZAKHSTAN = 'KZ1048_KAZAKHSTAN',
JAPAN = 'JAPAN',
KOREA = 'KOREA',
CHINA = 'CHINA',
HK_TW = 'HK_TW',
TCVN_VIETNAMESE = 'TCVN_VIETNAMESE'
}
declare type CutOptions = {
/**
* @default 2
*/
verticalTabAmount: number;
}
declare class ThermalPrinter {
printerTypes: PrinterTypes;
/**
* Constructor
* @param Object config (type, interface, width, characterSet, removeSpecialCharacters, options)
*/
constructor(config: {
type?: PrinterTypes;
interface: string;
width?: number;
characterSet?: CharacterSet;
lineCharacter?: string;
driver?: Object;
removeSpecialCharacters?: boolean;
breakLine?: BreakLine;
options?: {
timeout?: number
};
});
/**
* Send printing buffer to printer
* @param Object Options (docname, waitForResponse)
* @returns Promise<String>
*/
execute(
options?: {
docname?: string;
waitForResponse?: boolean;
}
): Promise<String>;
/**
* Add cut
*/
cut(options?: CutOptions): void;
/**
* Add partial cut
*/
partialCut(options?: CutOptions): void;
/**
* Add beep
*/
beep(numberOfBeeps?: number, lengthOfTheSound?: number): void;
/**
* Get number of characters in one line
* @returns Number
*/
getWidth(): number;
/**
* Get printing buffer in string
* @returns String
*/
getText(): string;
/**
* Get printing buffer
* @returns Buffer
*/
getBuffer(): Buffer;
/**
* Set printing buffer
* @param Buffer
* @returns void
*/
setBuffer(newBuffer: Buffer): void;
/**
* Clear printing buffer
*/
clear(): void;
/**
* Add buffer to printing buffer
* @param Buffer
*/
add(buffer: Buffer): void;
/**
* Set character set
* @param String character set
*/
setCharacterSet(characterSet: String): void;
/**
* Add text
* @param String text
*/
print(text: string): void;
/**
* Add text with new line
* @param String text
*/
println(text: string): void;
/**
* Add vertical tab
*/
printVerticalTab(): void;
/**
* Set text bold
* @param Boolean is enabled
*/
bold(enabled: boolean): void;
/**
* Set text undeline
* @param Boolean is enabled
*/
underline(enabled: boolean): void;
/**
* Set text undeline and bold
* @param Boolean is enabled
*/
underlineThick(enabled: boolean): void;
/**
* Set text upside down
* @param Boolean is enabled
*/
upsideDown(enabled: boolean): void;
/**
* Set text background and text color inverted
* @param Boolean is enabled
*/
invert(enabled: boolean): void;
/**
* Add open cash drawer
*/
openCashDrawer(): void;
/**
* Align text to center
*/
alignCenter(): void;
/**
* Align text to left
*/
alignLeft(): void;
/**
* Align text to right
*/
alignRight(): void;
/**
* Set font type A
*/
setTypeFontA(): void;
/**
* Set font type B
*/
setTypeFontB(): void;
/**
* Set text size to normal
*/
setTextNormal(): void;
/**
* Set text size to double height
*/
setTextDoubleHeight(): void;
/**
* Set text size to double width
*/
setTextDoubleWidth(): void;
/**
* Set text size to double height and width
*/
setTextQuadArea(): void;
/**
* Add new line
*/
newLine(): void;
/**
* Draw a line of characters
* @param String optional character to be repeated
*/
drawLine(character?: string): void;
/**
* Set height and width font size
* @param Number height
* @param Number width
*/
setTextSize(height: number, width: number): void;
/**
* Add font to left side and right side
* @param String left side text
* @param String right side text
*/
leftRight(left: string, right: string): void;
/**
* Insert table of data (width split equally)
* @param Array Array of values
*/
table(data: string[]): void;
/**
* Insert table of data with custom cell settings
* @param Array Array of objects
*/
tableCustom(data: {
text: string;
align?: "CENTER" | "RIGHT" | "LEFT";
width?: number;
cols?: number;
bold?: boolean;
}[]): void;
/**
* Check if printer is connected
* @returns Promise<boolean>
*/
isPrinterConnected(): Promise<boolean>;
/**
* Print QR code
* @param String QR data
* @param Object Settings (cellSize, correction, model)
*/
printQR(
str: string,
settings?: {
cellSize?: number;
correction?: "L" | "M" | "Q" | "H";
model?: number;
}
): void;
/**
* Add barcode
* @param String barcode data
* @param Number type of barcode
* @param Object barcode settings (hriPos, hriFont, width, height)
*/
printBarcode(
data: string,
type?: number,
settings?: {
hriPos?: number;
hriFont?: number;
width?: number;
height?: number;
}
): void;
/**
* Add maxiCode barcode
* @param String barcode data
* @param Object barcode settings (mode)
*/
maxiCode(
data: string,
settings?: {
mode?: number;
}
): void;
/**
* Add code128 barcode
* @param String barcode data
* @param Object barcode settings (width, height, text)
*/
code128(
data: string,
settings?: {
width?: "LARGE" | "SMALL" | "MEDIUM";
height?: number;
text?: number;
}
): void;
/**
* Add pdf417 barcode
* @param String barcode data
* @param Object settings (rowHeight, width, correction, truncated, columns)
*/
pdf417(
data: string,
settings?: {
rowHeight?: number;
width?: number;
correction?: number;
truncated?: boolean;
columns?: number;
}
): void;
/**
* Add image
* @param String file path
* @returns Promise<Buffer> image buffer
*/
printImage(image: string): Promise<Buffer>;
/**
* Add image buffer
* @param Buffer image buffer
* @returns Promise<Buffer> printer image buffer
*/
printImageBuffer(buffer: Buffer): Promise<Buffer>;
/**
* Send buffer to printer
* @param Buffer
* @returns Promise<String>
*/
raw(text: Buffer): Promise<String>;
/**
* Manually set the printer driver
* @param Object driver the printer driver
*/
setPrinterDriver(driver: Object): void;
/**
* Manually append content to the current buffer
* @param {string|Buffer} - content string or buffer to append
*/
append(content: string | Buffer): void;
}
export {
ThermalPrinter as printer,
PrinterTypes as types,
BreakLine as breakLine,
CharacterSet as characterSet,
ThermalPrinter,
PrinterTypes,
BreakLine,
CharacterSet
};