All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.prompto.value.Image.js Maven / Gradle / Ivy

var BinaryValue = require("./BinaryValue").BinaryValue;
var ImageType = require("../type/ImageType").ImageType;

function Image(mimeType, data) {
    BinaryValue.call(this, ImageType.instance, mimeType, data);
    return this;
}

Image.prototype = Object.create(BinaryValue.prototype);
Image.prototype.constructor = Image;

exports.Image = Image;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy