├── LICENSE ├── README.md ├── dist ├── JSESCPOSBuilder.d.ts └── JSESCPOSBuilder.js ├── esc-pos-output.jpg └── src ├── ts ├── Commands.ts ├── Document.ts ├── Enums.ts ├── GetPixels.ts ├── Image.ts ├── Utils.ts └── cptable.d.ts └── tsconfig.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/js-escpos-builder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/js-escpos-builder/HEAD/README.md -------------------------------------------------------------------------------- /dist/JSESCPOSBuilder.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/js-escpos-builder/HEAD/dist/JSESCPOSBuilder.d.ts -------------------------------------------------------------------------------- /dist/JSESCPOSBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/js-escpos-builder/HEAD/dist/JSESCPOSBuilder.js -------------------------------------------------------------------------------- /esc-pos-output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/js-escpos-builder/HEAD/esc-pos-output.jpg -------------------------------------------------------------------------------- /src/ts/Commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/js-escpos-builder/HEAD/src/ts/Commands.ts -------------------------------------------------------------------------------- /src/ts/Document.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/js-escpos-builder/HEAD/src/ts/Document.ts -------------------------------------------------------------------------------- /src/ts/Enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/js-escpos-builder/HEAD/src/ts/Enums.ts -------------------------------------------------------------------------------- /src/ts/GetPixels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/js-escpos-builder/HEAD/src/ts/GetPixels.ts -------------------------------------------------------------------------------- /src/ts/Image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/js-escpos-builder/HEAD/src/ts/Image.ts -------------------------------------------------------------------------------- /src/ts/Utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/js-escpos-builder/HEAD/src/ts/Utils.ts -------------------------------------------------------------------------------- /src/ts/cptable.d.ts: -------------------------------------------------------------------------------- 1 | declare namespace cptable { 2 | export var utils: any; 3 | } -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neodynamic/js-escpos-builder/HEAD/src/tsconfig.json --------------------------------------------------------------------------------