UNPKG

spdf-to-printer

Version:

A utility to print PDF files from Node.js and Electron

12 lines (8 loc) 262 B
export interface Options { printer?: string; unix?: string[]; win32?: string[]; } export function print(path: string, options?: any): Promise<void>; export function getPrinters(): Promise<string[]>; export function getDefaultPrinter(): Promise<string>;