@cloudinary/url-gen
Version:
You are invited to influence our new SDK [Click here to view github discussion](https://github.com/cloudinary/js-url-gen/discussions/602) =========================
20 lines (16 loc) • 373 B
JavaScript
;
var QualifierValue = require('./QualifierValue-e770d619.cjs');
/**
* @memberOf Qualifiers.FocusOn
* @extends {SDK.QualifierValue}
*/
class FocusOnValue extends QualifierValue.QualifierValue {
constructor(name) {
super();
this.name = name;
}
toString() {
return this.name;
}
}
exports.FocusOnValue = FocusOnValue;