8 lines
205 B
TypeScript
8 lines
205 B
TypeScript
import { usePrinterContext } from '@/contexts/printer-context';
|
|
|
|
export type { PrinterType, PaperSize } from '@/contexts/printer-context';
|
|
|
|
export function usePrinter() {
|
|
return usePrinterContext();
|
|
}
|