dynamicsmobile
Version:
Allows development of off-line mobile and web business apps over the Dynamics Mobile platform. More info on https://www.dynamicsmobile.com
12 lines (11 loc) • 441 B
TypeScript
import { PrintService } from '../lib-core/print-service';
export declare class BackendPrintService extends PrintService {
print(options: {
printerName: string;
textToPrint: string;
pageWidth: number;
pageHeight: number;
encoding: 'utf-8' | 'acii' | '8859-5' | 'cp866' | 'cp864' | 'cp1256' | 'cp863' | 'cp858' | 'apex' | 'koi8-r' | any;
secureConnection?: boolean;
}): Promise<void>;
}