UNPKG

webzlp

Version:

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

17 lines 773 B
import * as Conf from '../../Configs/index.js'; import * as Cmds from '../../Commands/index.js'; export type SetActiveConfig = 'ReloadFactory' | 'ReloadSaved' | 'SaveCurrent'; export declare class CmdConfigUpdate implements Cmds.IPrinterExtendedCommand { readonly config: SetActiveConfig; static typeE: symbol; typeExtended: symbol; commandLanguageApplicability: Conf.PrinterCommandLanguage; name: string; type: "CustomCommand"; effectFlags: Cmds.CommandEffectFlags; toDisplay(): string; constructor(config: SetActiveConfig); } export declare const cmdConfigUpdateMapping: Cmds.IPrinterCommandMapping<string>; export declare function handleCmdConfigUpdate(cmd: Cmds.IPrinterCommand): string; //# sourceMappingURL=CmdConfigUpdate.d.ts.map