capacitor-zebra-printer
Version:
Capacitor plugin to send ZPL messages to Zebra printers
14 lines (13 loc) • 439 B
TypeScript
import { WebPlugin } from '@capacitor/core';
import type { CapacitorZebraPrinterPlugin } from './definitions';
import type PrintOptions from './types/PrintOptions';
export declare class CapacitorZebraPrinterWeb extends WebPlugin implements CapacitorZebraPrinterPlugin {
echo(options: {
value: string;
}): Promise<{
value: string;
}>;
print(options: PrintOptions): Promise<{
value: string;
}>;
}