webzlp
Version:
A small library using WebUSB to print labels on label printers.
18 lines • 955 B
TypeScript
import * as Conf from '../../Configs/index.js';
import * as Cmds from '../../Commands/index.js';
export type CmdXmlQueryType = 'All' | 'Format' | 'ObjectListing' | 'Status';
export declare class CmdXmlQuery implements Cmds.IPrinterExtendedCommand {
readonly query: CmdXmlQueryType;
static typeE: symbol;
typeExtended: symbol;
commandLanguageApplicability: Conf.PrinterCommandLanguage;
name: string;
type: "CustomCommand";
effectFlags: Cmds.CommandEffectFlags;
toDisplay(): string;
constructor(query?: CmdXmlQueryType);
}
export declare const cmdXmlQueryTypeMapping: Cmds.IPrinterCommandMapping<string>;
export declare function handleCmdXmlQuery(cmd: Cmds.IPrinterCommand, _docState: Cmds.TranspiledDocumentState, _commandSet: Cmds.CommandSet<string>): string;
export declare function parseCmdXmlQuery(msg: string, cmd: Cmds.IPrinterCommand): Cmds.IMessageHandlerResult<string>;
//# sourceMappingURL=CmdXmlQuery.d.ts.map