You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ERROR in node_modules/escpos-xml/lib/buffer-builder.ts(9,19): error TS2554: Expected 2 arguments, but got 0.
node_modules/escpos-xml/lib/buffer-builder.ts(150,5): error TS2322: Type 'Buffer' is not assignable to type 'number[]'.
Property 'push' is missing in type 'Buffer'.
I have fixed it by changing the return to return Array.prototype.slice.call(this.buffer.flush(), 0); in buffer-builder.ts line 150
The text was updated successfully, but these errors were encountered:
getting these errors:
I have fixed it by changing the return to
return Array.prototype.slice.call(this.buffer.flush(), 0);
inbuffer-builder.ts
line 150The text was updated successfully, but these errors were encountered: