UNPKG

x11

Version:

A pure node.js JavaScript client implementing X Window (X11) protocol and extensions.

9 lines (8 loc) 184 B
function Pixmap(depth, width, height, buffer) { this.depth = depth; this.width = width; this.height = height; this.data = buffer; } module.exports.Pixmap = Pixmap;