@c_phillips/ipp-browser
Version:
IPP for the browse and node
16 lines • 484 B
TypeScript
/// <reference types="node" />
import { OperationDescription } from "./types";
declare class Printer {
url: URL | any;
version: string | any;
uri: string | any;
charset: string | any;
language: string | any;
constructor(url: any, opts?: any);
private _message;
getHeaders(headers?: any): any;
encodeMsg(operation: OperationDescription, msg: any): Buffer;
decodeMsg(buf: any): any;
}
export default Printer;
//# sourceMappingURL=printer.d.ts.map