UNPKG

webzlp

Version:

A small library using WebUSB to print labels on label printers.

18 lines 962 B
import { IZplPrinterSettings, SensorLevels } from './Config.js'; import * as Conf from '../../Configs/index.js'; import * as Cmds from '../../Commands/index.js'; export declare class CmdSetSensorCalibration implements Cmds.IPrinterExtendedCommand { static typeE: symbol; typeExtended: symbol; commandLanguageApplicability: Conf.PrinterCommandLanguage; name: string; type: "CustomCommand"; effectFlags: Cmds.CommandEffectFlags; toDisplay(): string; readonly levels: Conf.UpdateFor<SensorLevels>; constructor(levels: Conf.UpdateFor<SensorLevels>); static fromConfig(cfg: IZplPrinterSettings, levels: Partial<SensorLevels>): CmdSetSensorCalibration; } export declare const cmdSetSensorCalibrationMapping: Cmds.IPrinterCommandMapping<string>; export declare function handleCmdSetSensorCalibration(cmd: Cmds.IPrinterCommand, docState: Cmds.TranspiledDocumentState): string; //# sourceMappingURL=CmdSetSensorCalibration.d.ts.map