UNPKG
escpos-print
Version:
latest (2.0.0)
2.0.0
1.1.1
1.1.0
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Library for printing to ESC/POS compatible printers
github.com/haavardlian/escpos
haavardlian/escpos
escpos-print
/
Adapter.d.ts
7 lines
(6 loc)
•
191 B
TypeScript
View Raw
1
2
3
4
5
6
7
declare
abstract
class
Adapter
{
abstract
open
():
Promise
<
void
>;
abstract
write
(
data
:
Uint8Array
):
Promise
<
void
>;
abstract
close
():
Promise
<
void
>; }
export
default
Adapter
;