
js.prompto.value.BinaryValue.js Maven / Gradle / Ivy
var Value = require("./Value").Value;
function BinaryValue(itype, mimeType, data) {
Value.call(this, itype);
this.mimeType = mimeType;
this.data = data;
return this;
}
BinaryValue.prototype = Object.create(Value.prototype);
BinaryValue.prototype.constructor = BinaryValue;
exports.BinaryValue = BinaryValue;
© 2015 - 2025 Weber Informatics LLC | Privacy Policy