@cloudinary/url-gen
Version:
Cloudinary URL-Gen SDK ========================= [](https://app.travis-ci.com/github/cloudinary/js-url-gen) ## About The Cloudinary URL-Gen SDK allows you to quickly and eas
25 lines (21 loc) • 521 B
JavaScript
;
var Action = require('./Action-34aa7481.cjs');
/**
* @description Creates the 3D_lut layer transformation
* @memberOf Actions.Adjust
* @extends SDK.Action
*/
class By3dLutAction extends Action.Action {
constructor(publicId) {
super();
this.publicId = publicId;
}
/**
* Returns a string representation of the action
* @return {string}
*/
toString() {
return `l_lut:${this.publicId}/fl_layer_apply`;
}
}
exports.By3dLutAction = By3dLutAction;