dynamicsmobile
Version:
Allows development of off-line mobile and web business apps over the Dynamics Mobile platform. More info on https://www.dynamicsmobile.com
29 lines • 1.01 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PrintService = void 0;
const tslib_1 = require("tslib");
const app_service_app_1 = require("./app-service-app");
class PrintService extends app_service_app_1.CoreAppService {
constructor(DmsApplicationService, DeviceService) {
super(DmsApplicationService, null);
this.DeviceService = DeviceService;
this.printerName_Screen = '##screen';
}
print(options) {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
throw new Error('Not implemented');
});
}
printImage(options) {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
throw new Error('Not implemented');
});
}
getPrinters() {
return tslib_1.__awaiter(this, void 0, void 0, function* () {
throw new Error('Not implemented');
});
}
}
exports.PrintService = PrintService;
//# sourceMappingURL=print-service.js.map