UNPKG

react-epson-epos-sdk

Version:

React library for managing Epson printers with ePOS SDK support.

10 lines (9 loc) 258 B
import type { Dayjs } from "dayjs"; import type { ConnectionStatus } from "../PrinterProvider.enum"; export type PrinterRuntimeState = { status: ConnectionStatus; timestamp: Dayjs | null; }; export type UnprintedQueueEntry = { data: string[]; };