UNPKG

win32-api

Version:

FFI definitions of windows win32 api for node-ffi

7 lines 418 B
import type { PRINTER_INFO_LEVEL, PRINTER_INFO_X_Type } from 'win32-def/struct'; import type { GetPrinterOptions } from './winspool.types.js'; /** * @link https://learn.microsoft.com/zh-cn/windows/win32/printdocs/getprinter */ export declare function GetPrinter<Level extends PRINTER_INFO_LEVEL>(options: GetPrinterOptions<Level>): Promise<PRINTER_INFO_X_Type<Level> | null>; //# sourceMappingURL=GetPrinter.d.ts.map