cordova-plugin-datecs-printer icon indicating copy to clipboard operation
cordova-plugin-datecs-printer copied to clipboard

How to use in ionic 2 app?

Open sahilmo opened this issue 7 years ago • 2 comments

I want to print on 58 mm small pos printer. How can i do with this plugin?

sahilmo avatar Aug 05 '18 15:08 sahilmo

Import the plugin by

ionic cordova plugin add https://github.com/giorgiofellipe/cordova-plugin-datecs-printer.git

and in your code, do something like this

declare var window;

...


window.DatecsPrinter.listBluetoothDevices((devices) => {
    this.bluetoothDevices = devices;
}, (error) => {
    alert('error');
});

ErxrilOwl avatar Aug 29 '18 08:08 ErxrilOwl

am having an error property DatecsPrinter does not exist on type window. How do i sort this?

sundayokoi avatar Sep 19 '18 07:09 sundayokoi