UNPKG

image-in-browser

Version:

Package for encoding / decoding images, transforming images, applying filters, drawing primitives on images on the client side (no need for server Node.js)

17 lines 343 B
export class PsdImageResource { get id() { return this._id; } get name() { return this._name; } get data() { return this._data; } constructor(id, name, data) { this._id = id; this._name = name; this._data = data; } } //# sourceMappingURL=psd-image-resource.js.map