UNPKG

capacitor-zebra-printer

Version:

Capacitor plugin to send ZPL messages to Zebra printers

12 lines (11 loc) 270 B
import type PrintOptions from './types/PrintOptions'; export interface CapacitorZebraPrinterPlugin { echo(options: { value: string; }): Promise<{ value: string; }>; print(options: PrintOptions): Promise<{ value: string; }>; }